@itwin/ecschema-rpcinterface-tests 5.11.0-dev.11 → 5.11.0-dev.14
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/bundled-tests.js +1299 -999
- package/lib/dist/bundled-tests.js.map +1 -1
- package/package.json +16 -16
|
@@ -84626,13 +84626,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
84626
84626
|
* Use of this service requires an API key to be supplied via [[MapLayerOptions.BingMaps]] in the [[IModelAppOptions.mapLayerOptions]] passed to [[IModelApp.startup]].
|
|
84627
84627
|
* @public
|
|
84628
84628
|
* @extensions
|
|
84629
|
+
* @deprecated in 5.11.0. Provide a [[LocationProvider]] implementation via [[IModelAppOptions.geospatialProviders]].
|
|
84630
|
+
* @note This class structurally satisfies [[LocationProvider]] but does not use an explicit `implements` clause
|
|
84631
|
+
* because api-extractor forbids `@public` classes from referencing `@beta` interfaces (ae-incompatible-release-tags).
|
|
84629
84632
|
*/
|
|
84630
84633
|
class BingLocationProvider {
|
|
84631
84634
|
_locationRequestTemplate;
|
|
84632
84635
|
constructor() {
|
|
84633
84636
|
let bingKey = "";
|
|
84637
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated -- this deprecated class reads from the deprecated BingMaps key by design
|
|
84634
84638
|
if (_IModelApp__WEBPACK_IMPORTED_MODULE_2__.IModelApp.mapLayerFormatRegistry.configOptions.BingMaps) {
|
|
84635
|
-
bingKey = _IModelApp__WEBPACK_IMPORTED_MODULE_2__.IModelApp.mapLayerFormatRegistry.configOptions.BingMaps.value;
|
|
84639
|
+
bingKey = _IModelApp__WEBPACK_IMPORTED_MODULE_2__.IModelApp.mapLayerFormatRegistry.configOptions.BingMaps.value; // eslint-disable-line @typescript-eslint/no-deprecated
|
|
84636
84640
|
}
|
|
84637
84641
|
this._locationRequestTemplate = `https://dev.virtualearth.net/REST/v1/Locations?query={query}&key=${bingKey}`;
|
|
84638
84642
|
}
|
|
@@ -85698,6 +85702,26 @@ class CategorySelectorState extends _EntityState__WEBPACK_IMPORTED_MODULE_1__.El
|
|
|
85698
85702
|
}
|
|
85699
85703
|
|
|
85700
85704
|
|
|
85705
|
+
/***/ }),
|
|
85706
|
+
|
|
85707
|
+
/***/ "../../core/frontend/lib/esm/CesiumAccessClient.js":
|
|
85708
|
+
/*!*********************************************************!*\
|
|
85709
|
+
!*** ../../core/frontend/lib/esm/CesiumAccessClient.js ***!
|
|
85710
|
+
\*********************************************************/
|
|
85711
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
85712
|
+
|
|
85713
|
+
"use strict";
|
|
85714
|
+
__webpack_require__.r(__webpack_exports__);
|
|
85715
|
+
/*---------------------------------------------------------------------------------------------
|
|
85716
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
85717
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
85718
|
+
*--------------------------------------------------------------------------------------------*/
|
|
85719
|
+
/** @packageDocumentation
|
|
85720
|
+
* @module Tiles
|
|
85721
|
+
*/
|
|
85722
|
+
|
|
85723
|
+
|
|
85724
|
+
|
|
85701
85725
|
/***/ }),
|
|
85702
85726
|
|
|
85703
85727
|
/***/ "../../core/frontend/lib/esm/ChangeFlags.js":
|
|
@@ -86682,7 +86706,7 @@ class DisplayStyleState extends _EntityState__WEBPACK_IMPORTED_MODULE_6__.Elemen
|
|
|
86682
86706
|
const url = (0,_tile_internal__WEBPACK_IMPORTED_MODULE_9__.getCesiumOSMBuildingsUrl)();
|
|
86683
86707
|
if (undefined === url)
|
|
86684
86708
|
return undefined;
|
|
86685
|
-
return this.contextRealityModelStates.find((x) => x.url
|
|
86709
|
+
return this.contextRealityModelStates.find((x) => x.url?.startsWith(url));
|
|
86686
86710
|
}
|
|
86687
86711
|
/** Set the display of the OpenStreetMap worldwide building layer in this display style by attaching or detaching the reality model displaying the buildings.
|
|
86688
86712
|
* The OSM buildings are displayed from a reality model aggregated and served from Cesium ion.<(https://cesium.com/content/cesium-osm-buildings/>
|
|
@@ -86694,7 +86718,7 @@ class DisplayStyleState extends _EntityState__WEBPACK_IMPORTED_MODULE_6__.Elemen
|
|
|
86694
86718
|
const url = (0,_tile_internal__WEBPACK_IMPORTED_MODULE_9__.getCesiumOSMBuildingsUrl)();
|
|
86695
86719
|
if (undefined === url)
|
|
86696
86720
|
return false;
|
|
86697
|
-
let model = this.settings.contextRealityModels.models.find((x) => x.url
|
|
86721
|
+
let model = this.settings.contextRealityModels.models.find((x) => x.url?.startsWith(url));
|
|
86698
86722
|
if (options.onOff === false) {
|
|
86699
86723
|
const turnedOff = undefined !== model && this.settings.contextRealityModels.delete(model);
|
|
86700
86724
|
if (turnedOff)
|
|
@@ -89511,6 +89535,67 @@ class FuzzySearchResultsIterator {
|
|
|
89511
89535
|
}
|
|
89512
89536
|
|
|
89513
89537
|
|
|
89538
|
+
/***/ }),
|
|
89539
|
+
|
|
89540
|
+
/***/ "../../core/frontend/lib/esm/GeoProviders.js":
|
|
89541
|
+
/*!***************************************************!*\
|
|
89542
|
+
!*** ../../core/frontend/lib/esm/GeoProviders.js ***!
|
|
89543
|
+
\***************************************************/
|
|
89544
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
89545
|
+
|
|
89546
|
+
"use strict";
|
|
89547
|
+
__webpack_require__.r(__webpack_exports__);
|
|
89548
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
89549
|
+
/* harmony export */ getHeightAverage: () => (/* binding */ getHeightAverage),
|
|
89550
|
+
/* harmony export */ getHeightRange: () => (/* binding */ getHeightRange)
|
|
89551
|
+
/* harmony export */ });
|
|
89552
|
+
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
89553
|
+
/*---------------------------------------------------------------------------------------------
|
|
89554
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
89555
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
89556
|
+
*--------------------------------------------------------------------------------------------*/
|
|
89557
|
+
/** @packageDocumentation
|
|
89558
|
+
* @module Views
|
|
89559
|
+
*/
|
|
89560
|
+
|
|
89561
|
+
/** Compute the elevation range for an iModel's project extents using the given provider.
|
|
89562
|
+
* @beta
|
|
89563
|
+
*/
|
|
89564
|
+
async function getHeightRange(provider, iModel) {
|
|
89565
|
+
if (!iModel.isGeoLocated)
|
|
89566
|
+
return _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Range1d.createNull();
|
|
89567
|
+
const latLongRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Range2d.createNull();
|
|
89568
|
+
const range = iModel.projectExtents.clone();
|
|
89569
|
+
// Expand for project surroundings.
|
|
89570
|
+
range.expandInPlace(1000);
|
|
89571
|
+
for (const corner of range.corners()) {
|
|
89572
|
+
const carto = iModel.spatialToCartographicFromEcef(corner);
|
|
89573
|
+
latLongRange.extendXY(carto.longitudeDegrees, carto.latitudeDegrees);
|
|
89574
|
+
}
|
|
89575
|
+
const heights = await provider.getHeights?.(latLongRange);
|
|
89576
|
+
return heights ? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Range1d.createArray(heights) : _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Range1d.createNull();
|
|
89577
|
+
}
|
|
89578
|
+
/** Compute the average elevation for an iModel's project extents using the given provider.
|
|
89579
|
+
* @beta
|
|
89580
|
+
*/
|
|
89581
|
+
async function getHeightAverage(provider, iModel) {
|
|
89582
|
+
if (!iModel.isGeoLocated)
|
|
89583
|
+
return 0;
|
|
89584
|
+
const latLongRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Range2d.createNull();
|
|
89585
|
+
for (const corner of iModel.projectExtents.corners()) {
|
|
89586
|
+
const carto = iModel.spatialToCartographicFromEcef(corner);
|
|
89587
|
+
latLongRange.extendXY(carto.longitudeDegrees, carto.latitudeDegrees);
|
|
89588
|
+
}
|
|
89589
|
+
const heights = await provider.getHeights?.(latLongRange);
|
|
89590
|
+
if (!heights || !heights.length)
|
|
89591
|
+
return 0;
|
|
89592
|
+
let total = 0.0;
|
|
89593
|
+
for (const height of heights)
|
|
89594
|
+
total += height;
|
|
89595
|
+
return total / heights.length;
|
|
89596
|
+
}
|
|
89597
|
+
|
|
89598
|
+
|
|
89514
89599
|
/***/ }),
|
|
89515
89600
|
|
|
89516
89601
|
/***/ "../../core/frontend/lib/esm/GeoServices.js":
|
|
@@ -90922,18 +91007,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
90922
91007
|
/* harmony import */ var _TentativePoint__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./TentativePoint */ "../../core/frontend/lib/esm/TentativePoint.js");
|
|
90923
91008
|
/* harmony import */ var _RealityDataSource__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./RealityDataSource */ "../../core/frontend/lib/esm/RealityDataSource.js");
|
|
90924
91009
|
/* harmony import */ var _tile_internal__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./tile/internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
90925
|
-
/* harmony import */ var
|
|
90926
|
-
/* harmony import */ var
|
|
90927
|
-
/* harmony import */ var
|
|
90928
|
-
/* harmony import */ var
|
|
90929
|
-
/* harmony import */ var
|
|
90930
|
-
/* harmony import */ var
|
|
90931
|
-
/* harmony import */ var
|
|
90932
|
-
/* harmony import */ var
|
|
90933
|
-
/* harmony import */ var
|
|
90934
|
-
/* harmony import */ var
|
|
90935
|
-
/* harmony import */ var
|
|
90936
|
-
/* harmony import */ var
|
|
91010
|
+
/* harmony import */ var _BingLocation__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./BingLocation */ "../../core/frontend/lib/esm/BingLocation.js");
|
|
91011
|
+
/* harmony import */ var _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./tools/AccuDrawTool */ "../../core/frontend/lib/esm/tools/AccuDrawTool.js");
|
|
91012
|
+
/* harmony import */ var _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./tools/ClipViewTool */ "../../core/frontend/lib/esm/tools/ClipViewTool.js");
|
|
91013
|
+
/* harmony import */ var _tools_IdleTool__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./tools/IdleTool */ "../../core/frontend/lib/esm/tools/IdleTool.js");
|
|
91014
|
+
/* harmony import */ var _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./tools/MeasureTool */ "../../core/frontend/lib/esm/tools/MeasureTool.js");
|
|
91015
|
+
/* harmony import */ var _tools_SelectTool__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./tools/SelectTool */ "../../core/frontend/lib/esm/tools/SelectTool.js");
|
|
91016
|
+
/* harmony import */ var _tools_Tool__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./tools/Tool */ "../../core/frontend/lib/esm/tools/Tool.js");
|
|
91017
|
+
/* harmony import */ var _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./tools/ToolAdmin */ "../../core/frontend/lib/esm/tools/ToolAdmin.js");
|
|
91018
|
+
/* harmony import */ var _tools_ViewTool__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./tools/ViewTool */ "../../core/frontend/lib/esm/tools/ViewTool.js");
|
|
91019
|
+
/* harmony import */ var _ViewManager__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./ViewManager */ "../../core/frontend/lib/esm/ViewManager.js");
|
|
91020
|
+
/* harmony import */ var _ViewState__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./ViewState */ "../../core/frontend/lib/esm/ViewState.js");
|
|
91021
|
+
/* harmony import */ var _IModeljs_css__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./IModeljs-css */ "../../core/frontend/lib/esm/IModeljs-css.js");
|
|
91022
|
+
/* harmony import */ var _IModeljs_css__WEBPACK_IMPORTED_MODULE_38___default = /*#__PURE__*/__webpack_require__.n(_IModeljs_css__WEBPACK_IMPORTED_MODULE_38__);
|
|
90937
91023
|
/*---------------------------------------------------------------------------------------------
|
|
90938
91024
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
90939
91025
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -90982,6 +91068,7 @@ const COPYRIGHT_NOTICE = `Copyright © 2017-${new Date().getFullYear()} <a href=
|
|
|
90982
91068
|
|
|
90983
91069
|
|
|
90984
91070
|
|
|
91071
|
+
|
|
90985
91072
|
|
|
90986
91073
|
|
|
90987
91074
|
/**
|
|
@@ -91018,6 +91105,9 @@ class IModelApp {
|
|
|
91018
91105
|
static _securityOptions;
|
|
91019
91106
|
static _mapLayerFormatRegistry;
|
|
91020
91107
|
static _terrainProviderRegistry;
|
|
91108
|
+
static _elevationProvider;
|
|
91109
|
+
static _geoidProvider;
|
|
91110
|
+
static _locationProvider;
|
|
91021
91111
|
static _realityDataSourceProviders;
|
|
91022
91112
|
static _hubAccess;
|
|
91023
91113
|
static _realityDataAccess;
|
|
@@ -91033,13 +91123,28 @@ class IModelApp {
|
|
|
91033
91123
|
/** The AuthorizationClient used to obtain [AccessToken]($bentley)s. */
|
|
91034
91124
|
static authorizationClient;
|
|
91035
91125
|
/** The [[ToolRegistry]] for this session. */
|
|
91036
|
-
static tools = new
|
|
91126
|
+
static tools = new _tools_Tool__WEBPACK_IMPORTED_MODULE_33__.ToolRegistry();
|
|
91037
91127
|
/** A uniqueId for this session */
|
|
91038
91128
|
static sessionId;
|
|
91039
91129
|
/** The [[MapLayerFormatRegistry]] for this session. */
|
|
91040
91130
|
static get mapLayerFormatRegistry() { return this._mapLayerFormatRegistry; }
|
|
91041
91131
|
/** The [[TerrainProviderRegistry]] for this session. */
|
|
91042
91132
|
static get terrainProviderRegistry() { return this._terrainProviderRegistry; }
|
|
91133
|
+
/** The [[ElevationProvider]] for this session.
|
|
91134
|
+
* @beta
|
|
91135
|
+
*/
|
|
91136
|
+
static get elevationProvider() { return (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_2__.expectDefined)(this._elevationProvider); }
|
|
91137
|
+
static set elevationProvider(provider) { this._elevationProvider = provider; }
|
|
91138
|
+
/** The [[GeoidProvider]] for this session.
|
|
91139
|
+
* @beta
|
|
91140
|
+
*/
|
|
91141
|
+
static get geoidProvider() { return (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_2__.expectDefined)(this._geoidProvider); }
|
|
91142
|
+
static set geoidProvider(provider) { this._geoidProvider = provider; }
|
|
91143
|
+
/** The [[LocationProvider]] for this session.
|
|
91144
|
+
* @beta
|
|
91145
|
+
*/
|
|
91146
|
+
static get locationProvider() { return (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_2__.expectDefined)(this._locationProvider); }
|
|
91147
|
+
static set locationProvider(provider) { this._locationProvider = provider; }
|
|
91043
91148
|
/** The [[RealityDataSourceProviderRegistry]] for this session.
|
|
91044
91149
|
* @beta
|
|
91045
91150
|
*/
|
|
@@ -91177,19 +91282,19 @@ class IModelApp {
|
|
|
91177
91282
|
const toolsNs = "CoreTools";
|
|
91178
91283
|
await this.localization.initialize(["iModelJs", toolsNs]);
|
|
91179
91284
|
[
|
|
91180
|
-
|
|
91181
|
-
|
|
91182
|
-
|
|
91183
|
-
|
|
91184
|
-
|
|
91185
|
-
|
|
91285
|
+
_tools_SelectTool__WEBPACK_IMPORTED_MODULE_32__,
|
|
91286
|
+
_tools_IdleTool__WEBPACK_IMPORTED_MODULE_30__,
|
|
91287
|
+
_tools_ViewTool__WEBPACK_IMPORTED_MODULE_35__,
|
|
91288
|
+
_tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_29__,
|
|
91289
|
+
_tools_MeasureTool__WEBPACK_IMPORTED_MODULE_31__,
|
|
91290
|
+
_tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_28__,
|
|
91186
91291
|
].forEach((tool) => this.tools.registerModule(tool, toolsNs));
|
|
91187
91292
|
this.registerEntityState(_EntityState__WEBPACK_IMPORTED_MODULE_14__.EntityState.classFullName, _EntityState__WEBPACK_IMPORTED_MODULE_14__.EntityState);
|
|
91188
91293
|
this.registerEntityState(_EntityState__WEBPACK_IMPORTED_MODULE_14__.ElementState.classFullName, _EntityState__WEBPACK_IMPORTED_MODULE_14__.ElementState);
|
|
91189
91294
|
[
|
|
91190
91295
|
_ModelState__WEBPACK_IMPORTED_MODULE_17__,
|
|
91191
91296
|
_SheetViewState__WEBPACK_IMPORTED_MODULE_22__,
|
|
91192
|
-
|
|
91297
|
+
_ViewState__WEBPACK_IMPORTED_MODULE_37__,
|
|
91193
91298
|
_DrawingViewState__WEBPACK_IMPORTED_MODULE_12__,
|
|
91194
91299
|
_SpatialViewState__WEBPACK_IMPORTED_MODULE_23__,
|
|
91195
91300
|
_DisplayStyleState__WEBPACK_IMPORTED_MODULE_11__,
|
|
@@ -91200,10 +91305,10 @@ class IModelApp {
|
|
|
91200
91305
|
this._renderSystem = (opts.renderSys instanceof _render_RenderSystem__WEBPACK_IMPORTED_MODULE_20__.RenderSystem) ? opts.renderSys : this.createRenderSys(opts.renderSys);
|
|
91201
91306
|
if (opts.userPreferences)
|
|
91202
91307
|
this._userPreferences = opts.userPreferences;
|
|
91203
|
-
this._viewManager = opts.viewManager ?? new
|
|
91308
|
+
this._viewManager = opts.viewManager ?? new _ViewManager__WEBPACK_IMPORTED_MODULE_36__.ViewManager();
|
|
91204
91309
|
this._tileAdmin = await _tile_internal__WEBPACK_IMPORTED_MODULE_26__.TileAdmin.create(opts.tileAdmin);
|
|
91205
91310
|
this._notifications = opts.notifications ?? new _NotificationManager__WEBPACK_IMPORTED_MODULE_18__.NotificationManager();
|
|
91206
|
-
this._toolAdmin = opts.toolAdmin ?? new
|
|
91311
|
+
this._toolAdmin = opts.toolAdmin ?? new _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_34__.ToolAdmin();
|
|
91207
91312
|
this._accuDraw = opts.accuDraw ?? new _AccuDraw__WEBPACK_IMPORTED_MODULE_6__.AccuDraw();
|
|
91208
91313
|
this._accuSnap = opts.accuSnap ?? new _AccuSnap__WEBPACK_IMPORTED_MODULE_7__.AccuSnap();
|
|
91209
91314
|
this._locateManager = opts.locateManager ?? new _ElementLocateManager__WEBPACK_IMPORTED_MODULE_13__.ElementLocateManager();
|
|
@@ -91212,6 +91317,15 @@ class IModelApp {
|
|
|
91212
91317
|
this._uiAdmin = opts.uiAdmin ?? new _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__.UiAdmin();
|
|
91213
91318
|
this._mapLayerFormatRegistry = new _tile_internal__WEBPACK_IMPORTED_MODULE_26__.MapLayerFormatRegistry(opts.mapLayerOptions);
|
|
91214
91319
|
this._terrainProviderRegistry = new _tile_internal__WEBPACK_IMPORTED_MODULE_26__.TerrainProviderRegistry();
|
|
91320
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated -- intentional: Bing is the backward-compat default until it is removed in a future major version
|
|
91321
|
+
let defaultBingElevation;
|
|
91322
|
+
const geo = opts.geospatialProviders;
|
|
91323
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
91324
|
+
const lazyBing = () => defaultBingElevation ??= new _tile_internal__WEBPACK_IMPORTED_MODULE_26__.BingElevationProvider();
|
|
91325
|
+
this._elevationProvider = geo?.elevationProvider ?? lazyBing();
|
|
91326
|
+
this._geoidProvider = geo?.geoidProvider ?? lazyBing();
|
|
91327
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
91328
|
+
this._locationProvider = geo?.locationProvider ?? new _BingLocation__WEBPACK_IMPORTED_MODULE_27__.BingLocationProvider();
|
|
91215
91329
|
this._realityDataSourceProviders = new _RealityDataSource__WEBPACK_IMPORTED_MODULE_25__.RealityDataSourceProviderRegistry();
|
|
91216
91330
|
this._realityDataAccess = opts.realityDataAccess;
|
|
91217
91331
|
this._formatsProviderManager = new _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_19__.FormatsProviderManager(opts.formatsProvider ?? new _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_19__.QuantityTypeFormatsProvider());
|
|
@@ -91247,6 +91361,9 @@ class IModelApp {
|
|
|
91247
91361
|
[this.toolAdmin, this.viewManager, this.tileAdmin].forEach((sys) => sys.onShutDown());
|
|
91248
91362
|
this.tools.shutdown();
|
|
91249
91363
|
this._renderSystem = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_2__.dispose)(this._renderSystem);
|
|
91364
|
+
this._elevationProvider = undefined;
|
|
91365
|
+
this._geoidProvider = undefined;
|
|
91366
|
+
this._locationProvider = undefined;
|
|
91250
91367
|
this._entityClasses.clear();
|
|
91251
91368
|
this.authorizationClient = undefined;
|
|
91252
91369
|
this._initialized = false;
|
|
@@ -91327,7 +91444,7 @@ class IModelApp {
|
|
|
91327
91444
|
IModelApp.tileAdmin.process();
|
|
91328
91445
|
}
|
|
91329
91446
|
catch (exception) {
|
|
91330
|
-
|
|
91447
|
+
_tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_34__.ToolAdmin.exceptionHandler(exception); // eslint-disable-line @typescript-eslint/no-floating-promises
|
|
91331
91448
|
IModelApp._wantEventLoop = false;
|
|
91332
91449
|
IModelApp._animationRequested = true; // unrecoverable after exception, don't request any further frames.
|
|
91333
91450
|
window.removeEventListener("resize", () => IModelApp.requestNextAnimation());
|
|
@@ -91555,13 +91672,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
91555
91672
|
/* harmony import */ var _ModelState__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ModelState */ "../../core/frontend/lib/esm/ModelState.js");
|
|
91556
91673
|
/* harmony import */ var _SelectionSet__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./SelectionSet */ "../../core/frontend/lib/esm/SelectionSet.js");
|
|
91557
91674
|
/* harmony import */ var _SubCategoriesCache__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./SubCategoriesCache */ "../../core/frontend/lib/esm/SubCategoriesCache.js");
|
|
91558
|
-
/* harmony import */ var
|
|
91559
|
-
/* harmony import */ var
|
|
91560
|
-
/* harmony import */ var
|
|
91561
|
-
/* harmony import */ var
|
|
91562
|
-
/* harmony import */ var
|
|
91563
|
-
/* harmony import */ var
|
|
91564
|
-
/* harmony import */ var _itwin_ecschema_rpcinterface_common__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! @itwin/ecschema-rpcinterface-common */ "../../core/ecschema-rpc/common/lib/esm/ecschema-rpc-interface.js");
|
|
91675
|
+
/* harmony import */ var _Tiles__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./Tiles */ "../../core/frontend/lib/esm/Tiles.js");
|
|
91676
|
+
/* harmony import */ var _ViewState__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./ViewState */ "../../core/frontend/lib/esm/ViewState.js");
|
|
91677
|
+
/* harmony import */ var _common_internal_Symbols__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./common/internal/Symbols */ "../../core/frontend/lib/esm/common/internal/Symbols.js");
|
|
91678
|
+
/* harmony import */ var _IpcApp__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./IpcApp */ "../../core/frontend/lib/esm/IpcApp.js");
|
|
91679
|
+
/* harmony import */ var _itwin_ecschema_metadata__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! @itwin/ecschema-metadata */ "../../core/ecschema-metadata/lib/esm/ecschema-metadata.js");
|
|
91680
|
+
/* harmony import */ var _itwin_ecschema_rpcinterface_common__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! @itwin/ecschema-rpcinterface-common */ "../../core/ecschema-rpc/common/lib/esm/ecschema-rpc-interface.js");
|
|
91565
91681
|
/*---------------------------------------------------------------------------------------------
|
|
91566
91682
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
91567
91683
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -91585,7 +91701,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
91585
91701
|
|
|
91586
91702
|
|
|
91587
91703
|
|
|
91588
|
-
|
|
91589
91704
|
const loggerCategory = _common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_3__.FrontendLoggerCategory.IModelConnection;
|
|
91590
91705
|
/** A connection to a [IModelDb]($backend) hosted on the backend.
|
|
91591
91706
|
* @public
|
|
@@ -91724,7 +91839,7 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
91724
91839
|
this.categories = new IModelConnection.Categories(this);
|
|
91725
91840
|
this.selectionSet = new _SelectionSet__WEBPACK_IMPORTED_MODULE_8__.SelectionSet(this);
|
|
91726
91841
|
this.hilited = new _SelectionSet__WEBPACK_IMPORTED_MODULE_8__.HiliteSet(this);
|
|
91727
|
-
this.tiles = new
|
|
91842
|
+
this.tiles = new _Tiles__WEBPACK_IMPORTED_MODULE_10__.Tiles(this);
|
|
91728
91843
|
this.geoServices = _GeoServices__WEBPACK_IMPORTED_MODULE_4__.GeoServices.createForIModel(this);
|
|
91729
91844
|
this.hilited.onModelSubCategoryModeChanged.addListener(() => {
|
|
91730
91845
|
_IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.viewManager.onSelectionSetChanged(this);
|
|
@@ -91792,14 +91907,14 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
91792
91907
|
* @note callers must gracefully handle Promise rejected with AbandonedError
|
|
91793
91908
|
* @internal
|
|
91794
91909
|
*/
|
|
91795
|
-
async [
|
|
91910
|
+
async [_common_internal_Symbols__WEBPACK_IMPORTED_MODULE_12__._requestSnap](props) {
|
|
91796
91911
|
return this.isOpen ? this._snapRpc.request(props) : { status: 2 };
|
|
91797
91912
|
}
|
|
91798
91913
|
/** @internal
|
|
91799
91914
|
* @deprecated in 4.8 - will not be removed until after 2026-06-13. Use AccuSnap.doSnapRequest.
|
|
91800
91915
|
*/
|
|
91801
91916
|
async requestSnap(props) {
|
|
91802
|
-
return this[
|
|
91917
|
+
return this[_common_internal_Symbols__WEBPACK_IMPORTED_MODULE_12__._requestSnap](props);
|
|
91803
91918
|
}
|
|
91804
91919
|
_toolTipRpc = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.OneAtATimeAction(async (id) => _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).getToolTipMessage(this.getRpcProps(), id));
|
|
91805
91920
|
/** Request a tooltip from the backend.
|
|
@@ -92026,19 +92141,23 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
92026
92141
|
_geodeticToSeaLevel;
|
|
92027
92142
|
_projectCenterAltitude;
|
|
92028
92143
|
/** Event called immediately after map elevation request is completed. This occurs only in the case where background map terrain is displayed
|
|
92029
|
-
* with either geoid or ground offset. These require a query to
|
|
92144
|
+
* with either geoid or ground offset. These require a query to the elevation/geoid provider and therefore synching the view may be required
|
|
92030
92145
|
* when the request is completed.
|
|
92031
92146
|
* @internal
|
|
92032
92147
|
*/
|
|
92033
92148
|
onMapElevationLoaded = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
92034
|
-
/** The offset between sea level and the geodetic ellipsoid. This will return undefined only if the request for the offset
|
|
92149
|
+
/** The offset between sea level and the geodetic ellipsoid. This will return undefined only if the request for the offset
|
|
92035
92150
|
* is required, and in this case the [[onMapElevationLoaded]] event is raised when the request is completed.
|
|
92036
92151
|
* @internal
|
|
92037
92152
|
*/
|
|
92038
92153
|
get geodeticToSeaLevel() {
|
|
92039
92154
|
if (undefined === this._geodeticToSeaLevel) {
|
|
92040
|
-
|
|
92041
|
-
|
|
92155
|
+
if (!this.isGeoLocated) {
|
|
92156
|
+
this._geodeticToSeaLevel = 0.0;
|
|
92157
|
+
return 0.0;
|
|
92158
|
+
}
|
|
92159
|
+
const carto = this.spatialToCartographicFromEcef(this.projectExtents.center);
|
|
92160
|
+
this._geodeticToSeaLevel = _IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.geoidProvider.getGeodeticToSeaLevelOffset(carto);
|
|
92042
92161
|
this._geodeticToSeaLevel.then((geodeticToSeaLevel) => {
|
|
92043
92162
|
this._geodeticToSeaLevel = geodeticToSeaLevel;
|
|
92044
92163
|
this.onMapElevationLoaded.raiseEvent(this);
|
|
@@ -92046,14 +92165,18 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
92046
92165
|
}
|
|
92047
92166
|
return ("number" === typeof this._geodeticToSeaLevel) ? this._geodeticToSeaLevel : undefined;
|
|
92048
92167
|
}
|
|
92049
|
-
/** The altitude (geodetic) at the project center. This will return undefined only if the request for the
|
|
92168
|
+
/** The altitude (geodetic) at the project center. This will return undefined only if the request for the altitude
|
|
92050
92169
|
* is required, and in this case the [[onMapElevationLoaded]] event is raised when the request is completed.
|
|
92051
92170
|
* @internal
|
|
92052
92171
|
*/
|
|
92053
92172
|
get projectCenterAltitude() {
|
|
92054
92173
|
if (undefined === this._projectCenterAltitude) {
|
|
92055
|
-
|
|
92056
|
-
|
|
92174
|
+
if (!this.isGeoLocated) {
|
|
92175
|
+
this._projectCenterAltitude = 0.0;
|
|
92176
|
+
return 0.0;
|
|
92177
|
+
}
|
|
92178
|
+
const carto = this.spatialToCartographicFromEcef(this.projectExtents.center);
|
|
92179
|
+
this._projectCenterAltitude = _IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.elevationProvider.getHeight(carto);
|
|
92057
92180
|
this._projectCenterAltitude.then((projectCenterAltitude) => {
|
|
92058
92181
|
this._projectCenterAltitude = projectCenterAltitude;
|
|
92059
92182
|
this.onMapElevationLoaded.raiseEvent(this);
|
|
@@ -92076,13 +92199,13 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
92076
92199
|
*/
|
|
92077
92200
|
get schemaContext() {
|
|
92078
92201
|
if (this._schemaContext === undefined) {
|
|
92079
|
-
const context = new
|
|
92202
|
+
const context = new _itwin_ecschema_metadata__WEBPACK_IMPORTED_MODULE_14__.SchemaContext();
|
|
92080
92203
|
// While incremental schema loading is the prefered way to load schemas on the frontend, there might be cases where clients
|
|
92081
92204
|
// would want to use their own locaters, so if incremenal schema loading is disabled, the locater is not registered.
|
|
92082
92205
|
if (_IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.isIncrementalSchemaLoadingEnabled) {
|
|
92083
|
-
context.addLocater(new
|
|
92206
|
+
context.addLocater(new _itwin_ecschema_rpcinterface_common__WEBPACK_IMPORTED_MODULE_15__.RpcIncrementalSchemaLocater(this._getRpcProps()));
|
|
92084
92207
|
}
|
|
92085
|
-
context.addFallbackLocater(new
|
|
92208
|
+
context.addFallbackLocater(new _itwin_ecschema_rpcinterface_common__WEBPACK_IMPORTED_MODULE_15__.ECSchemaRpcLocater(this._getRpcProps()));
|
|
92086
92209
|
this._schemaContext = context;
|
|
92087
92210
|
}
|
|
92088
92211
|
return this._schemaContext;
|
|
@@ -92182,7 +92305,7 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
92182
92305
|
// PRAGMAs. If the serialized result exceeds the memory threshold, the response is marked
|
|
92183
92306
|
// "Partial", and a `for await` loop would re-issue the same PRAGMA forever since PRAGMAs
|
|
92184
92307
|
// don't support OFFSET-based pagination.
|
|
92185
|
-
const reader = this.createQueryReader(`PRAGMA schema_view(${
|
|
92308
|
+
const reader = this.createQueryReader(`PRAGMA schema_view(${_itwin_ecschema_metadata__WEBPACK_IMPORTED_MODULE_14__.schemaViewFormatVersion})`);
|
|
92186
92309
|
const result = await reader.next();
|
|
92187
92310
|
if (result.done)
|
|
92188
92311
|
throw new _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelError(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.BadRequest, "PRAGMA schema_view returned no rows");
|
|
@@ -92190,7 +92313,7 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
92190
92313
|
const token = result.value.schemaToken;
|
|
92191
92314
|
if (data === undefined || data === null)
|
|
92192
92315
|
throw new _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelError(_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.IModelStatus.BadRequest, "PRAGMA schema_view returned null data column");
|
|
92193
|
-
return
|
|
92316
|
+
return _itwin_ecschema_metadata__WEBPACK_IMPORTED_MODULE_14__.SchemaView.fromBinary(data, token ?? "");
|
|
92194
92317
|
}
|
|
92195
92318
|
}
|
|
92196
92319
|
/** A connection that exists without an iModel. Useful for connecting to Reality Data services.
|
|
@@ -92259,10 +92382,10 @@ class SnapshotConnection extends IModelConnection {
|
|
|
92259
92382
|
* @note This method is intended for desktop or mobile applications and is not available for web applications.
|
|
92260
92383
|
*/
|
|
92261
92384
|
static async openFile(filePath) {
|
|
92262
|
-
if (!
|
|
92385
|
+
if (!_IpcApp__WEBPACK_IMPORTED_MODULE_13__.IpcApp.isValid)
|
|
92263
92386
|
throw new Error("IPC required to open a snapshot");
|
|
92264
92387
|
_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.Logger.logTrace(loggerCategory, "SnapshotConnection.openFile", () => ({ filePath }));
|
|
92265
|
-
const connectionProps = await
|
|
92388
|
+
const connectionProps = await _IpcApp__WEBPACK_IMPORTED_MODULE_13__.IpcApp.appFunctionIpc.openSnapshot(filePath);
|
|
92266
92389
|
const connection = new SnapshotConnection(connectionProps);
|
|
92267
92390
|
IModelConnection.onOpen.raiseEvent(connection);
|
|
92268
92391
|
return connection;
|
|
@@ -92293,7 +92416,7 @@ class SnapshotConnection extends IModelConnection {
|
|
|
92293
92416
|
this.beforeClose();
|
|
92294
92417
|
try {
|
|
92295
92418
|
if (!this.isRemote) {
|
|
92296
|
-
await
|
|
92419
|
+
await _IpcApp__WEBPACK_IMPORTED_MODULE_13__.IpcApp.appFunctionIpc.closeIModel(this.key);
|
|
92297
92420
|
}
|
|
92298
92421
|
}
|
|
92299
92422
|
finally {
|
|
@@ -92819,7 +92942,7 @@ class SnapshotConnection extends IModelConnection {
|
|
|
92819
92942
|
if (iModel.isClosed)
|
|
92820
92943
|
return [];
|
|
92821
92944
|
const params = { ...queryParams }; // make a copy
|
|
92822
|
-
params.from = queryParams.from ||
|
|
92945
|
+
params.from = queryParams.from || _ViewState__WEBPACK_IMPORTED_MODULE_11__.ViewState.classFullName; // use "BisCore:ViewDefinition" as default class name
|
|
92823
92946
|
params.where = queryParams.where || "";
|
|
92824
92947
|
if (queryParams.wantPrivate === undefined || !queryParams.wantPrivate) {
|
|
92825
92948
|
if (params.where.length > 0)
|
|
@@ -95750,7 +95873,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
95750
95873
|
|
|
95751
95874
|
|
|
95752
95875
|
/** This class provides access to the reality data provider services.
|
|
95753
|
-
* It encapsulates access to a reality data
|
|
95876
|
+
* It encapsulates access to a reality data whether it be from local access, http or ProjectWise Context Share.
|
|
95754
95877
|
* The key provided at the creation determines if this is ProjectWise Context Share reference.
|
|
95755
95878
|
* If not then it is considered local (ex: C:\temp\TileRoot.json) or plain http access (http://someserver.com/data/TileRoot.json)
|
|
95756
95879
|
* There is a one to one relationship between a reality data and the instances of present class.
|
|
@@ -95841,10 +95964,28 @@ class RealityDataSourceCesiumIonAssetImpl {
|
|
|
95841
95964
|
// The following is only if the reality data is not stored on PW Context Share.
|
|
95842
95965
|
const cesiumAsset = _tile_internal__WEBPACK_IMPORTED_MODULE_3__.CesiumIonAssetProvider.parseCesiumUrl(url);
|
|
95843
95966
|
if (cesiumAsset) {
|
|
95844
|
-
|
|
95845
|
-
|
|
95846
|
-
|
|
95847
|
-
|
|
95967
|
+
let resolvedToken;
|
|
95968
|
+
let resolvedUrl;
|
|
95969
|
+
if (cesiumAsset.key) {
|
|
95970
|
+
// Legacy key-bearing URL (e.g. persisted saved view) - authenticate directly with the embedded Ion key.
|
|
95971
|
+
// Such URLs are intentionally exempt from the cesiumAccess-over-cesiumIonKey precedence rule and are not
|
|
95972
|
+
// routed through a registered CesiumAccessClient; see [[CesiumAccessClient]].
|
|
95973
|
+
const tokenAndUrl = await (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessTokenAndEndpointUrl)(`${cesiumAsset.id}`, cesiumAsset.key);
|
|
95974
|
+
resolvedToken = tokenAndUrl.token;
|
|
95975
|
+
resolvedUrl = tokenAndUrl.url;
|
|
95976
|
+
}
|
|
95977
|
+
else {
|
|
95978
|
+
// delegate to the registered CesiumAccessClient
|
|
95979
|
+
const client = (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessClient)();
|
|
95980
|
+
const endpoint = await client.getAssetEndpoint(`${cesiumAsset.id}`, iTwinId);
|
|
95981
|
+
if (endpoint) {
|
|
95982
|
+
resolvedToken = endpoint.accessToken;
|
|
95983
|
+
resolvedUrl = endpoint.url;
|
|
95984
|
+
}
|
|
95985
|
+
}
|
|
95986
|
+
if (resolvedUrl && resolvedToken) {
|
|
95987
|
+
url = resolvedUrl;
|
|
95988
|
+
this._requestAuthorization = `Bearer ${resolvedToken}`;
|
|
95848
95989
|
}
|
|
95849
95990
|
}
|
|
95850
95991
|
// The following is only if the reality data is not stored on PW Context Share.
|
|
@@ -99726,7 +99867,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
99726
99867
|
/* harmony export */ viewGlobalLocation: () => (/* binding */ viewGlobalLocation)
|
|
99727
99868
|
/* harmony export */ });
|
|
99728
99869
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
99729
|
-
/* harmony import */ var
|
|
99870
|
+
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
99730
99871
|
/* harmony import */ var _ViewState__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ViewState */ "../../core/frontend/lib/esm/ViewState.js");
|
|
99731
99872
|
/*---------------------------------------------------------------------------------------------
|
|
99732
99873
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -99766,18 +99907,15 @@ function metersToRange(inputMeters, minimumOutput = 500, maximumOutput = 3000, m
|
|
|
99766
99907
|
}
|
|
99767
99908
|
return output;
|
|
99768
99909
|
}
|
|
99769
|
-
/** Queries the actual elevation of a cartographic point on the globe
|
|
99910
|
+
/** Queries the actual elevation of a cartographic point on the globe.
|
|
99770
99911
|
* @public
|
|
99771
99912
|
* @extensions
|
|
99772
99913
|
*/
|
|
99773
99914
|
async function queryTerrainElevationOffset(viewport, carto) {
|
|
99774
|
-
const bingElevationProvider = new _tile_internal__WEBPACK_IMPORTED_MODULE_1__.BingElevationProvider();
|
|
99775
99915
|
if (viewport && viewport.view instanceof _ViewState__WEBPACK_IMPORTED_MODULE_2__.ViewState3d && viewport.iModel.isGeoLocated) {
|
|
99776
99916
|
const view3d = viewport.view;
|
|
99777
99917
|
if (view3d.displayStyle.displayTerrain) {
|
|
99778
|
-
|
|
99779
|
-
if (elevationOffset !== undefined)
|
|
99780
|
-
return elevationOffset;
|
|
99918
|
+
return _IModelApp__WEBPACK_IMPORTED_MODULE_1__.IModelApp.elevationProvider.getHeight(carto, view3d.globeMode === _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.GlobeMode.Ellipsoid);
|
|
99781
99919
|
}
|
|
99782
99920
|
}
|
|
99783
99921
|
return 0;
|
|
@@ -114427,578 +114565,582 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
114427
114565
|
/* harmony export */ ACSDisplayOptions: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.ACSDisplayOptions),
|
|
114428
114566
|
/* harmony export */ ACSType: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.ACSType),
|
|
114429
114567
|
/* harmony export */ AccuDraw: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDraw),
|
|
114430
|
-
/* harmony export */ AccuDrawChangeModeTool: () => (/* reexport safe */
|
|
114568
|
+
/* harmony export */ AccuDrawChangeModeTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawChangeModeTool),
|
|
114431
114569
|
/* harmony export */ AccuDrawFlags: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDrawFlags),
|
|
114432
114570
|
/* harmony export */ AccuDrawHintBuilder: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccuDrawHintBuilder),
|
|
114433
|
-
/* harmony export */ AccuDrawRotate90AboutXTool: () => (/* reexport safe */
|
|
114434
|
-
/* harmony export */ AccuDrawRotate90AboutYTool: () => (/* reexport safe */
|
|
114435
|
-
/* harmony export */ AccuDrawRotate90AboutZTool: () => (/* reexport safe */
|
|
114436
|
-
/* harmony export */ AccuDrawRotateAxesTool: () => (/* reexport safe */
|
|
114437
|
-
/* harmony export */ AccuDrawRotateCycleTool: () => (/* reexport safe */
|
|
114438
|
-
/* harmony export */ AccuDrawRotateElementTool: () => (/* reexport safe */
|
|
114439
|
-
/* harmony export */ AccuDrawRotateFrontTool: () => (/* reexport safe */
|
|
114440
|
-
/* harmony export */ AccuDrawRotateSideTool: () => (/* reexport safe */
|
|
114441
|
-
/* harmony export */ AccuDrawRotateTopTool: () => (/* reexport safe */
|
|
114442
|
-
/* harmony export */ AccuDrawRotateViewTool: () => (/* reexport safe */
|
|
114443
|
-
/* harmony export */ AccuDrawSessionToggleTool: () => (/* reexport safe */
|
|
114444
|
-
/* harmony export */ AccuDrawSetLockAngleTool: () => (/* reexport safe */
|
|
114445
|
-
/* harmony export */ AccuDrawSetLockDistanceTool: () => (/* reexport safe */
|
|
114446
|
-
/* harmony export */ AccuDrawSetLockIndexTool: () => (/* reexport safe */
|
|
114447
|
-
/* harmony export */ AccuDrawSetLockSmartTool: () => (/* reexport safe */
|
|
114448
|
-
/* harmony export */ AccuDrawSetLockXTool: () => (/* reexport safe */
|
|
114449
|
-
/* harmony export */ AccuDrawSetLockYTool: () => (/* reexport safe */
|
|
114450
|
-
/* harmony export */ AccuDrawSetLockZTool: () => (/* reexport safe */
|
|
114451
|
-
/* harmony export */ AccuDrawSetOriginTool: () => (/* reexport safe */
|
|
114452
|
-
/* harmony export */ AccuDrawShortcuts: () => (/* reexport safe */
|
|
114453
|
-
/* harmony export */ AccuDrawSuspendToggleTool: () => (/* reexport safe */
|
|
114454
|
-
/* harmony export */ AccuDrawViewportUI: () => (/* reexport safe */
|
|
114571
|
+
/* harmony export */ AccuDrawRotate90AboutXTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotate90AboutXTool),
|
|
114572
|
+
/* harmony export */ AccuDrawRotate90AboutYTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotate90AboutYTool),
|
|
114573
|
+
/* harmony export */ AccuDrawRotate90AboutZTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotate90AboutZTool),
|
|
114574
|
+
/* harmony export */ AccuDrawRotateAxesTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateAxesTool),
|
|
114575
|
+
/* harmony export */ AccuDrawRotateCycleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateCycleTool),
|
|
114576
|
+
/* harmony export */ AccuDrawRotateElementTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateElementTool),
|
|
114577
|
+
/* harmony export */ AccuDrawRotateFrontTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateFrontTool),
|
|
114578
|
+
/* harmony export */ AccuDrawRotateSideTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateSideTool),
|
|
114579
|
+
/* harmony export */ AccuDrawRotateTopTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateTopTool),
|
|
114580
|
+
/* harmony export */ AccuDrawRotateViewTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawRotateViewTool),
|
|
114581
|
+
/* harmony export */ AccuDrawSessionToggleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSessionToggleTool),
|
|
114582
|
+
/* harmony export */ AccuDrawSetLockAngleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockAngleTool),
|
|
114583
|
+
/* harmony export */ AccuDrawSetLockDistanceTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockDistanceTool),
|
|
114584
|
+
/* harmony export */ AccuDrawSetLockIndexTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockIndexTool),
|
|
114585
|
+
/* harmony export */ AccuDrawSetLockSmartTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockSmartTool),
|
|
114586
|
+
/* harmony export */ AccuDrawSetLockXTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockXTool),
|
|
114587
|
+
/* harmony export */ AccuDrawSetLockYTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockYTool),
|
|
114588
|
+
/* harmony export */ AccuDrawSetLockZTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetLockZTool),
|
|
114589
|
+
/* harmony export */ AccuDrawSetOriginTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSetOriginTool),
|
|
114590
|
+
/* harmony export */ AccuDrawShortcuts: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawShortcuts),
|
|
114591
|
+
/* harmony export */ AccuDrawSuspendToggleTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.AccuDrawSuspendToggleTool),
|
|
114592
|
+
/* harmony export */ AccuDrawViewportUI: () => (/* reexport safe */ _tools_AccuDrawViewportUI__WEBPACK_IMPORTED_MODULE_103__.AccuDrawViewportUI),
|
|
114455
114593
|
/* harmony export */ AccuSnap: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.AccuSnap),
|
|
114456
114594
|
/* harmony export */ AccudrawData: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.AccudrawData),
|
|
114457
|
-
/* harmony export */ ActivityMessageDetails: () => (/* reexport safe */
|
|
114458
|
-
/* harmony export */ ActivityMessageEndReason: () => (/* reexport safe */
|
|
114459
|
-
/* harmony export */ AlternateUnitLabelsRegistry: () => (/* reexport safe */
|
|
114460
|
-
/* harmony export */ AngleDescription: () => (/* reexport safe */
|
|
114461
|
-
/* harmony export */ AnimationNodeId: () => (/* reexport safe */
|
|
114462
|
-
/* harmony export */ ArcGISImageryProvider: () => (/* reexport safe */
|
|
114463
|
-
/* harmony export */ ArcGisErrorCode: () => (/* reexport safe */
|
|
114464
|
-
/* harmony export */ ArcGisGeometryReaderJSON: () => (/* reexport safe */
|
|
114465
|
-
/* harmony export */ ArcGisUtilities: () => (/* reexport safe */
|
|
114595
|
+
/* harmony export */ ActivityMessageDetails: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.ActivityMessageDetails),
|
|
114596
|
+
/* harmony export */ ActivityMessageEndReason: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.ActivityMessageEndReason),
|
|
114597
|
+
/* harmony export */ AlternateUnitLabelsRegistry: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.AlternateUnitLabelsRegistry),
|
|
114598
|
+
/* harmony export */ AngleDescription: () => (/* reexport safe */ _properties_AngleDescription__WEBPACK_IMPORTED_MODULE_71__.AngleDescription),
|
|
114599
|
+
/* harmony export */ AnimationNodeId: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.AnimationNodeId),
|
|
114600
|
+
/* harmony export */ ArcGISImageryProvider: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGISImageryProvider),
|
|
114601
|
+
/* harmony export */ ArcGisErrorCode: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGisErrorCode),
|
|
114602
|
+
/* harmony export */ ArcGisGeometryReaderJSON: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGisGeometryReaderJSON),
|
|
114603
|
+
/* harmony export */ ArcGisUtilities: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ArcGisUtilities),
|
|
114466
114604
|
/* harmony export */ AuxCoordSystem2dState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystem2dState),
|
|
114467
114605
|
/* harmony export */ AuxCoordSystem3dState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystem3dState),
|
|
114468
114606
|
/* harmony export */ AuxCoordSystemSpatialState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystemSpatialState),
|
|
114469
114607
|
/* harmony export */ AuxCoordSystemState: () => (/* reexport safe */ _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__.AuxCoordSystemState),
|
|
114470
|
-
/* harmony export */ BackgroundMapGeometry: () => (/* reexport safe */
|
|
114471
|
-
/* harmony export */ BaseUnitFormattingSettingsProvider: () => (/* reexport safe */
|
|
114472
|
-
/* harmony export */ BeButton: () => (/* reexport safe */
|
|
114473
|
-
/* harmony export */ BeButtonEvent: () => (/* reexport safe */
|
|
114474
|
-
/* harmony export */ BeButtonState: () => (/* reexport safe */
|
|
114475
|
-
/* harmony export */ BeModifierKeys: () => (/* reexport safe */
|
|
114476
|
-
/* harmony export */ BeTouchEvent: () => (/* reexport safe */
|
|
114477
|
-
/* harmony export */ BeWheelEvent: () => (/* reexport safe */
|
|
114478
|
-
/* harmony export */ BingElevationProvider: () => (/* reexport safe */
|
|
114608
|
+
/* harmony export */ BackgroundMapGeometry: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__.BackgroundMapGeometry),
|
|
114609
|
+
/* harmony export */ BaseUnitFormattingSettingsProvider: () => (/* reexport safe */ _quantity_formatting_BaseUnitFormattingSettingsProvider__WEBPACK_IMPORTED_MODULE_75__.BaseUnitFormattingSettingsProvider),
|
|
114610
|
+
/* harmony export */ BeButton: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeButton),
|
|
114611
|
+
/* harmony export */ BeButtonEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeButtonEvent),
|
|
114612
|
+
/* harmony export */ BeButtonState: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeButtonState),
|
|
114613
|
+
/* harmony export */ BeModifierKeys: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeModifierKeys),
|
|
114614
|
+
/* harmony export */ BeTouchEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeTouchEvent),
|
|
114615
|
+
/* harmony export */ BeWheelEvent: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.BeWheelEvent),
|
|
114616
|
+
/* harmony export */ BingElevationProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.BingElevationProvider),
|
|
114479
114617
|
/* harmony export */ BingLocationProvider: () => (/* reexport safe */ _BingLocation__WEBPACK_IMPORTED_MODULE_3__.BingLocationProvider),
|
|
114480
|
-
/* harmony export */ BlankConnection: () => (/* reexport safe */
|
|
114618
|
+
/* harmony export */ BlankConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_34__.BlankConnection),
|
|
114481
114619
|
/* harmony export */ BriefcaseConnection: () => (/* reexport safe */ _BriefcaseConnection__WEBPACK_IMPORTED_MODULE_4__.BriefcaseConnection),
|
|
114482
114620
|
/* harmony export */ BriefcaseEditorToolSettings: () => (/* reexport safe */ _BriefcaseConnection__WEBPACK_IMPORTED_MODULE_4__.BriefcaseEditorToolSettings),
|
|
114483
|
-
/* harmony export */ BriefcaseNotificationHandler: () => (/* reexport safe */
|
|
114484
|
-
/* harmony export */ BriefcaseTxns: () => (/* reexport safe */
|
|
114485
|
-
/* harmony export */ CatalogConnection: () => (/* reexport safe */
|
|
114486
|
-
/* harmony export */ CategorySelectorState: () => (/* reexport safe */
|
|
114487
|
-
/* harmony export */ ChangeFlag: () => (/* reexport safe */
|
|
114488
|
-
/* harmony export */ ChangeFlags: () => (/* reexport safe */
|
|
114489
|
-
/* harmony export */ CheckpointConnection: () => (/* reexport safe */
|
|
114490
|
-
/* harmony export */ ClipEventType: () => (/* reexport safe */
|
|
114491
|
-
/* harmony export */ Cluster: () => (/* reexport safe */
|
|
114621
|
+
/* harmony export */ BriefcaseNotificationHandler: () => (/* reexport safe */ _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_6__.BriefcaseNotificationHandler),
|
|
114622
|
+
/* harmony export */ BriefcaseTxns: () => (/* reexport safe */ _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_6__.BriefcaseTxns),
|
|
114623
|
+
/* harmony export */ CatalogConnection: () => (/* reexport safe */ _CatalogConnection__WEBPACK_IMPORTED_MODULE_7__.CatalogConnection),
|
|
114624
|
+
/* harmony export */ CategorySelectorState: () => (/* reexport safe */ _CategorySelectorState__WEBPACK_IMPORTED_MODULE_8__.CategorySelectorState),
|
|
114625
|
+
/* harmony export */ ChangeFlag: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__.ChangeFlag),
|
|
114626
|
+
/* harmony export */ ChangeFlags: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__.ChangeFlags),
|
|
114627
|
+
/* harmony export */ CheckpointConnection: () => (/* reexport safe */ _CheckpointConnection__WEBPACK_IMPORTED_MODULE_11__.CheckpointConnection),
|
|
114628
|
+
/* harmony export */ ClipEventType: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ClipEventType),
|
|
114629
|
+
/* harmony export */ Cluster: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_39__.Cluster),
|
|
114492
114630
|
/* harmony export */ CompassMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.CompassMode),
|
|
114493
114631
|
/* harmony export */ ContextMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ContextMode),
|
|
114494
|
-
/* harmony export */ ContextRealityModelState: () => (/* reexport safe */
|
|
114632
|
+
/* harmony export */ ContextRealityModelState: () => (/* reexport safe */ _ContextRealityModelState__WEBPACK_IMPORTED_MODULE_13__.ContextRealityModelState),
|
|
114495
114633
|
/* harmony export */ ContextRotationId: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ContextRotationId),
|
|
114496
|
-
/* harmony export */ CoordSource: () => (/* reexport safe */
|
|
114497
|
-
/* harmony export */ CoordSystem: () => (/* reexport safe */
|
|
114498
|
-
/* harmony export */ CoordinateConverter: () => (/* reexport safe */
|
|
114499
|
-
/* harmony export */ CoordinateLockOverrides: () => (/* reexport safe */
|
|
114500
|
-
/* harmony export */ CoreTools: () => (/* reexport safe */
|
|
114501
|
-
/* harmony export */ CurrentInputState: () => (/* reexport safe */
|
|
114634
|
+
/* harmony export */ CoordSource: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.CoordSource),
|
|
114635
|
+
/* harmony export */ CoordSystem: () => (/* reexport safe */ _CoordSystem__WEBPACK_IMPORTED_MODULE_14__.CoordSystem),
|
|
114636
|
+
/* harmony export */ CoordinateConverter: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_29__.CoordinateConverter),
|
|
114637
|
+
/* harmony export */ CoordinateLockOverrides: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.CoordinateLockOverrides),
|
|
114638
|
+
/* harmony export */ CoreTools: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.CoreTools),
|
|
114639
|
+
/* harmony export */ CurrentInputState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.CurrentInputState),
|
|
114502
114640
|
/* harmony export */ CurrentState: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.CurrentState),
|
|
114503
|
-
/* harmony export */ DebugShaderFile: () => (/* reexport safe */
|
|
114504
|
-
/* harmony export */ DecorateContext: () => (/* reexport safe */
|
|
114505
|
-
/* harmony export */ Decorations: () => (/* reexport safe */
|
|
114506
|
-
/* harmony export */ DecorationsCache: () => (/* reexport safe */
|
|
114507
|
-
/* harmony export */ DefaultViewTouchTool: () => (/* reexport safe */
|
|
114508
|
-
/* harmony export */ DefineACSByElementTool: () => (/* reexport safe */
|
|
114509
|
-
/* harmony export */ DefineACSByPointsTool: () => (/* reexport safe */
|
|
114510
|
-
/* harmony export */ DepthPointSource: () => (/* reexport safe */
|
|
114511
|
-
/* harmony export */ DevTools: () => (/* reexport safe */
|
|
114512
|
-
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */
|
|
114513
|
-
/* harmony export */ DisplayStyle2dState: () => (/* reexport safe */
|
|
114514
|
-
/* harmony export */ DisplayStyle3dState: () => (/* reexport safe */
|
|
114515
|
-
/* harmony export */ DisplayStyleState: () => (/* reexport safe */
|
|
114516
|
-
/* harmony export */ DrawingModelState: () => (/* reexport safe */
|
|
114517
|
-
/* harmony export */ DrawingViewState: () => (/* reexport safe */
|
|
114518
|
-
/* harmony export */ DynamicsContext: () => (/* reexport safe */
|
|
114519
|
-
/* harmony export */ ELEMENT_MARKED_FOR_REMOVAL: () => (/* reexport safe */
|
|
114520
|
-
/* harmony export */ EditManipulator: () => (/* reexport safe */
|
|
114521
|
-
/* harmony export */ ElementAgenda: () => (/* reexport safe */
|
|
114522
|
-
/* harmony export */ ElementLocateManager: () => (/* reexport safe */
|
|
114523
|
-
/* harmony export */ ElementPicker: () => (/* reexport safe */
|
|
114524
|
-
/* harmony export */ ElementSetTool: () => (/* reexport safe */
|
|
114525
|
-
/* harmony export */ ElementState: () => (/* reexport safe */
|
|
114526
|
-
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */
|
|
114527
|
-
/* harmony export */ EmphasizeElements: () => (/* reexport safe */
|
|
114528
|
-
/* harmony export */ EngineeringLengthDescription: () => (/* reexport safe */
|
|
114529
|
-
/* harmony export */ EntityState: () => (/* reexport safe */
|
|
114530
|
-
/* harmony export */ EnvironmentDecorations: () => (/* reexport safe */
|
|
114531
|
-
/* harmony export */ EventController: () => (/* reexport safe */
|
|
114532
|
-
/* harmony export */ EventHandled: () => (/* reexport safe */
|
|
114533
|
-
/* harmony export */ FeatureGeometryBaseRenderer: () => (/* reexport safe */
|
|
114534
|
-
/* harmony export */ FeatureGraphicsRenderer: () => (/* reexport safe */
|
|
114535
|
-
/* harmony export */ FeatureSymbology: () => (/* reexport safe */
|
|
114536
|
-
/* harmony export */ FitViewTool: () => (/* reexport safe */
|
|
114641
|
+
/* harmony export */ DebugShaderFile: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.DebugShaderFile),
|
|
114642
|
+
/* harmony export */ DecorateContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.DecorateContext),
|
|
114643
|
+
/* harmony export */ Decorations: () => (/* reexport safe */ _render_Decorations__WEBPACK_IMPORTED_MODULE_81__.Decorations),
|
|
114644
|
+
/* harmony export */ DecorationsCache: () => (/* reexport safe */ _DecorationsCache__WEBPACK_IMPORTED_MODULE_15__.DecorationsCache),
|
|
114645
|
+
/* harmony export */ DefaultViewTouchTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.DefaultViewTouchTool),
|
|
114646
|
+
/* harmony export */ DefineACSByElementTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.DefineACSByElementTool),
|
|
114647
|
+
/* harmony export */ DefineACSByPointsTool: () => (/* reexport safe */ _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__.DefineACSByPointsTool),
|
|
114648
|
+
/* harmony export */ DepthPointSource: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.DepthPointSource),
|
|
114649
|
+
/* harmony export */ DevTools: () => (/* reexport safe */ _DevTools__WEBPACK_IMPORTED_MODULE_16__.DevTools),
|
|
114650
|
+
/* harmony export */ DisclosedTileTreeSet: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.DisclosedTileTreeSet),
|
|
114651
|
+
/* harmony export */ DisplayStyle2dState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.DisplayStyle2dState),
|
|
114652
|
+
/* harmony export */ DisplayStyle3dState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.DisplayStyle3dState),
|
|
114653
|
+
/* harmony export */ DisplayStyleState: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.DisplayStyleState),
|
|
114654
|
+
/* harmony export */ DrawingModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.DrawingModelState),
|
|
114655
|
+
/* harmony export */ DrawingViewState: () => (/* reexport safe */ _DrawingViewState__WEBPACK_IMPORTED_MODULE_18__.DrawingViewState),
|
|
114656
|
+
/* harmony export */ DynamicsContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.DynamicsContext),
|
|
114657
|
+
/* harmony export */ ELEMENT_MARKED_FOR_REMOVAL: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.ELEMENT_MARKED_FOR_REMOVAL),
|
|
114658
|
+
/* harmony export */ EditManipulator: () => (/* reexport safe */ _tools_EditManipulator__WEBPACK_IMPORTED_MODULE_105__.EditManipulator),
|
|
114659
|
+
/* harmony export */ ElementAgenda: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__.ElementAgenda),
|
|
114660
|
+
/* harmony export */ ElementLocateManager: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.ElementLocateManager),
|
|
114661
|
+
/* harmony export */ ElementPicker: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.ElementPicker),
|
|
114662
|
+
/* harmony export */ ElementSetTool: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__.ElementSetTool),
|
|
114663
|
+
/* harmony export */ ElementState: () => (/* reexport safe */ _EntityState__WEBPACK_IMPORTED_MODULE_21__.ElementState),
|
|
114664
|
+
/* harmony export */ EllipsoidTerrainProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.EllipsoidTerrainProvider),
|
|
114665
|
+
/* harmony export */ EmphasizeElements: () => (/* reexport safe */ _EmphasizeElements__WEBPACK_IMPORTED_MODULE_20__.EmphasizeElements),
|
|
114666
|
+
/* harmony export */ EngineeringLengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__.EngineeringLengthDescription),
|
|
114667
|
+
/* harmony export */ EntityState: () => (/* reexport safe */ _EntityState__WEBPACK_IMPORTED_MODULE_21__.EntityState),
|
|
114668
|
+
/* harmony export */ EnvironmentDecorations: () => (/* reexport safe */ _EnvironmentDecorations__WEBPACK_IMPORTED_MODULE_22__.EnvironmentDecorations),
|
|
114669
|
+
/* harmony export */ EventController: () => (/* reexport safe */ _tools_EventController__WEBPACK_IMPORTED_MODULE_107__.EventController),
|
|
114670
|
+
/* harmony export */ EventHandled: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.EventHandled),
|
|
114671
|
+
/* harmony export */ FeatureGeometryBaseRenderer: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.FeatureGeometryBaseRenderer),
|
|
114672
|
+
/* harmony export */ FeatureGraphicsRenderer: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.FeatureGraphicsRenderer),
|
|
114673
|
+
/* harmony export */ FeatureSymbology: () => (/* reexport safe */ _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_82__.FeatureSymbology),
|
|
114674
|
+
/* harmony export */ FitViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.FitViewTool),
|
|
114537
114675
|
/* harmony export */ Flags: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.Flags),
|
|
114538
|
-
/* harmony export */ FlashMode: () => (/* reexport safe */
|
|
114539
|
-
/* harmony export */ FlashSettings: () => (/* reexport safe */
|
|
114540
|
-
/* harmony export */ FlyViewTool: () => (/* reexport safe */
|
|
114541
|
-
/* harmony export */ FormatsProviderManager: () => (/* reexport safe */
|
|
114542
|
-
/* harmony export */ FormattedQuantityDescription: () => (/* reexport safe */
|
|
114543
|
-
/* harmony export */ FrontendLoggerCategory: () => (/* reexport safe */
|
|
114544
|
-
/* harmony export */ Frustum2d: () => (/* reexport safe */
|
|
114545
|
-
/* harmony export */ FrustumAnimator: () => (/* reexport safe */
|
|
114546
|
-
/* harmony export */ FuzzySearch: () => (/* reexport safe */
|
|
114547
|
-
/* harmony export */ FuzzySearchResults: () => (/* reexport safe */
|
|
114548
|
-
/* harmony export */ GeoConverter: () => (/* reexport safe */
|
|
114549
|
-
/* harmony export */ GeoServices: () => (/* reexport safe */
|
|
114550
|
-
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */
|
|
114551
|
-
/* harmony export */ GeometricModel2dState: () => (/* reexport safe */
|
|
114552
|
-
/* harmony export */ GeometricModel3dState: () => (/* reexport safe */
|
|
114553
|
-
/* harmony export */ GeometricModelState: () => (/* reexport safe */
|
|
114554
|
-
/* harmony export */ GlobeAnimator: () => (/* reexport safe */
|
|
114555
|
-
/* harmony export */ GltfDataType: () => (/* reexport safe */
|
|
114556
|
-
/* harmony export */ GltfReader: () => (/* reexport safe */
|
|
114557
|
-
/* harmony export */ Google3dTilesProvider: () => (/* reexport safe */
|
|
114558
|
-
/* harmony export */ GoogleMapsDecorator: () => (/* reexport safe */
|
|
114559
|
-
/* harmony export */ GraphicAssembler: () => (/* reexport safe */
|
|
114560
|
-
/* harmony export */ GraphicBranch: () => (/* reexport safe */
|
|
114561
|
-
/* harmony export */ GraphicBuilder: () => (/* reexport safe */
|
|
114562
|
-
/* harmony export */ GraphicDescription: () => (/* reexport safe */
|
|
114563
|
-
/* harmony export */ GraphicDescriptionBuilder: () => (/* reexport safe */
|
|
114564
|
-
/* harmony export */ GraphicType: () => (/* reexport safe */
|
|
114565
|
-
/* harmony export */ GraphicalEditingScope: () => (/* reexport safe */
|
|
114566
|
-
/* harmony export */ HiliteSet: () => (/* reexport safe */
|
|
114567
|
-
/* harmony export */ HitDetail: () => (/* reexport safe */
|
|
114568
|
-
/* harmony export */ HitDetailType: () => (/* reexport safe */
|
|
114569
|
-
/* harmony export */ HitGeomType: () => (/* reexport safe */
|
|
114570
|
-
/* harmony export */ HitList: () => (/* reexport safe */
|
|
114571
|
-
/* harmony export */ HitParentGeomType: () => (/* reexport safe */
|
|
114572
|
-
/* harmony export */ HitPriority: () => (/* reexport safe */
|
|
114573
|
-
/* harmony export */ HitSource: () => (/* reexport safe */
|
|
114574
|
-
/* harmony export */ IModelApp: () => (/* reexport safe */
|
|
114575
|
-
/* harmony export */ IModelConnection: () => (/* reexport safe */
|
|
114576
|
-
/* harmony export */ IModelFrameLifecycle: () => (/* reexport safe */
|
|
114577
|
-
/* harmony export */ IModelRoutingContext: () => (/* reexport safe */
|
|
114578
|
-
/* harmony export */ IModelTileTree: () => (/* reexport safe */
|
|
114579
|
-
/* harmony export */ ITWINJS_CORE_VERSION: () => (/* reexport safe */
|
|
114580
|
-
/* harmony export */ IconSprites: () => (/* reexport safe */
|
|
114581
|
-
/* harmony export */ IdleTool: () => (/* reexport safe */
|
|
114582
|
-
/* harmony export */ ImageryMapLayerFormat: () => (/* reexport safe */
|
|
114583
|
-
/* harmony export */ ImageryMapLayerTreeReference: () => (/* reexport safe */
|
|
114584
|
-
/* harmony export */ ImageryMapTileTree: () => (/* reexport safe */
|
|
114585
|
-
/* harmony export */ ImdlReader: () => (/* reexport safe */
|
|
114586
|
-
/* harmony export */ InputCollector: () => (/* reexport safe */
|
|
114587
|
-
/* harmony export */ InputSource: () => (/* reexport safe */
|
|
114588
|
-
/* harmony export */ InstancedGraphicParams: () => (/* reexport safe */
|
|
114589
|
-
/* harmony export */ InstancedGraphicProps: () => (/* reexport safe */
|
|
114590
|
-
/* harmony export */ InteractiveTool: () => (/* reexport safe */
|
|
114591
|
-
/* harmony export */ IntersectDetail: () => (/* reexport safe */
|
|
114592
|
-
/* harmony export */ IpcApp: () => (/* reexport safe */
|
|
114676
|
+
/* harmony export */ FlashMode: () => (/* reexport safe */ _FlashSettings__WEBPACK_IMPORTED_MODULE_24__.FlashMode),
|
|
114677
|
+
/* harmony export */ FlashSettings: () => (/* reexport safe */ _FlashSettings__WEBPACK_IMPORTED_MODULE_24__.FlashSettings),
|
|
114678
|
+
/* harmony export */ FlyViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.FlyViewTool),
|
|
114679
|
+
/* harmony export */ FormatsProviderManager: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.FormatsProviderManager),
|
|
114680
|
+
/* harmony export */ FormattedQuantityDescription: () => (/* reexport safe */ _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_72__.FormattedQuantityDescription),
|
|
114681
|
+
/* harmony export */ FrontendLoggerCategory: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.FrontendLoggerCategory),
|
|
114682
|
+
/* harmony export */ Frustum2d: () => (/* reexport safe */ _Frustum2d__WEBPACK_IMPORTED_MODULE_26__.Frustum2d),
|
|
114683
|
+
/* harmony export */ FrustumAnimator: () => (/* reexport safe */ _FrustumAnimator__WEBPACK_IMPORTED_MODULE_27__.FrustumAnimator),
|
|
114684
|
+
/* harmony export */ FuzzySearch: () => (/* reexport safe */ _FuzzySearch__WEBPACK_IMPORTED_MODULE_28__.FuzzySearch),
|
|
114685
|
+
/* harmony export */ FuzzySearchResults: () => (/* reexport safe */ _FuzzySearch__WEBPACK_IMPORTED_MODULE_28__.FuzzySearchResults),
|
|
114686
|
+
/* harmony export */ GeoConverter: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_29__.GeoConverter),
|
|
114687
|
+
/* harmony export */ GeoServices: () => (/* reexport safe */ _GeoServices__WEBPACK_IMPORTED_MODULE_29__.GeoServices),
|
|
114688
|
+
/* harmony export */ GeographicTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.GeographicTilingScheme),
|
|
114689
|
+
/* harmony export */ GeometricModel2dState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.GeometricModel2dState),
|
|
114690
|
+
/* harmony export */ GeometricModel3dState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.GeometricModel3dState),
|
|
114691
|
+
/* harmony export */ GeometricModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.GeometricModelState),
|
|
114692
|
+
/* harmony export */ GlobeAnimator: () => (/* reexport safe */ _GlobeAnimator__WEBPACK_IMPORTED_MODULE_30__.GlobeAnimator),
|
|
114693
|
+
/* harmony export */ GltfDataType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.GltfDataType),
|
|
114694
|
+
/* harmony export */ GltfReader: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.GltfReader),
|
|
114695
|
+
/* harmony export */ Google3dTilesProvider: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.Google3dTilesProvider),
|
|
114696
|
+
/* harmony export */ GoogleMapsDecorator: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.GoogleMapsDecorator),
|
|
114697
|
+
/* harmony export */ GraphicAssembler: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicAssembler),
|
|
114698
|
+
/* harmony export */ GraphicBranch: () => (/* reexport safe */ _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_84__.GraphicBranch),
|
|
114699
|
+
/* harmony export */ GraphicBuilder: () => (/* reexport safe */ _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_85__.GraphicBuilder),
|
|
114700
|
+
/* harmony export */ GraphicDescription: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicDescription),
|
|
114701
|
+
/* harmony export */ GraphicDescriptionBuilder: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicDescriptionBuilder),
|
|
114702
|
+
/* harmony export */ GraphicType: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.GraphicType),
|
|
114703
|
+
/* harmony export */ GraphicalEditingScope: () => (/* reexport safe */ _GraphicalEditingScope__WEBPACK_IMPORTED_MODULE_31__.GraphicalEditingScope),
|
|
114704
|
+
/* harmony export */ HiliteSet: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_48__.HiliteSet),
|
|
114705
|
+
/* harmony export */ HitDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitDetail),
|
|
114706
|
+
/* harmony export */ HitDetailType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitDetailType),
|
|
114707
|
+
/* harmony export */ HitGeomType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitGeomType),
|
|
114708
|
+
/* harmony export */ HitList: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitList),
|
|
114709
|
+
/* harmony export */ HitParentGeomType: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitParentGeomType),
|
|
114710
|
+
/* harmony export */ HitPriority: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitPriority),
|
|
114711
|
+
/* harmony export */ HitSource: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.HitSource),
|
|
114712
|
+
/* harmony export */ IModelApp: () => (/* reexport safe */ _IModelApp__WEBPACK_IMPORTED_MODULE_33__.IModelApp),
|
|
114713
|
+
/* harmony export */ IModelConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_34__.IModelConnection),
|
|
114714
|
+
/* harmony export */ IModelFrameLifecycle: () => (/* reexport safe */ _internal_render_webgl_IModelFrameLifecycle__WEBPACK_IMPORTED_MODULE_100__.IModelFrameLifecycle),
|
|
114715
|
+
/* harmony export */ IModelRoutingContext: () => (/* reexport safe */ _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_35__.IModelRoutingContext),
|
|
114716
|
+
/* harmony export */ IModelTileTree: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.IModelTileTree),
|
|
114717
|
+
/* harmony export */ ITWINJS_CORE_VERSION: () => (/* reexport safe */ _IModelApp__WEBPACK_IMPORTED_MODULE_33__.ITWINJS_CORE_VERSION),
|
|
114718
|
+
/* harmony export */ IconSprites: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_52__.IconSprites),
|
|
114719
|
+
/* harmony export */ IdleTool: () => (/* reexport safe */ _tools_IdleTool__WEBPACK_IMPORTED_MODULE_108__.IdleTool),
|
|
114720
|
+
/* harmony export */ ImageryMapLayerFormat: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.ImageryMapLayerFormat),
|
|
114721
|
+
/* harmony export */ ImageryMapLayerTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.ImageryMapLayerTreeReference),
|
|
114722
|
+
/* harmony export */ ImageryMapTileTree: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ImageryMapTileTree),
|
|
114723
|
+
/* harmony export */ ImdlReader: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.ImdlReader),
|
|
114724
|
+
/* harmony export */ InputCollector: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.InputCollector),
|
|
114725
|
+
/* harmony export */ InputSource: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.InputSource),
|
|
114726
|
+
/* harmony export */ InstancedGraphicParams: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.InstancedGraphicParams),
|
|
114727
|
+
/* harmony export */ InstancedGraphicProps: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.InstancedGraphicProps),
|
|
114728
|
+
/* harmony export */ InteractiveTool: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.InteractiveTool),
|
|
114729
|
+
/* harmony export */ IntersectDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.IntersectDetail),
|
|
114730
|
+
/* harmony export */ IpcApp: () => (/* reexport safe */ _IpcApp__WEBPACK_IMPORTED_MODULE_36__.IpcApp),
|
|
114593
114731
|
/* harmony export */ ItemField: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ItemField),
|
|
114594
|
-
/* harmony export */ KeyinParseError: () => (/* reexport safe */
|
|
114732
|
+
/* harmony export */ KeyinParseError: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.KeyinParseError),
|
|
114595
114733
|
/* harmony export */ KeyinStatus: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.KeyinStatus),
|
|
114596
|
-
/* harmony export */ LayerTileTreeHandler: () => (/* reexport safe */
|
|
114597
|
-
/* harmony export */ LayerTileTreeReferenceHandler: () => (/* reexport safe */
|
|
114598
|
-
/* harmony export */ LengthDescription: () => (/* reexport safe */
|
|
114599
|
-
/* harmony export */ LocalExtensionProvider: () => (/* reexport safe */
|
|
114600
|
-
/* harmony export */ LocalUnitFormatProvider: () => (/* reexport safe */
|
|
114601
|
-
/* harmony export */ LocalhostIpcApp: () => (/* reexport safe */
|
|
114602
|
-
/* harmony export */ LocateAction: () => (/* reexport safe */
|
|
114603
|
-
/* harmony export */ LocateFilterStatus: () => (/* reexport safe */
|
|
114604
|
-
/* harmony export */ LocateOptions: () => (/* reexport safe */
|
|
114605
|
-
/* harmony export */ LocateResponse: () => (/* reexport safe */
|
|
114734
|
+
/* harmony export */ LayerTileTreeHandler: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.LayerTileTreeHandler),
|
|
114735
|
+
/* harmony export */ LayerTileTreeReferenceHandler: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.LayerTileTreeReferenceHandler),
|
|
114736
|
+
/* harmony export */ LengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__.LengthDescription),
|
|
114737
|
+
/* harmony export */ LocalExtensionProvider: () => (/* reexport safe */ _extension_providers_LocalExtensionProvider__WEBPACK_IMPORTED_MODULE_69__.LocalExtensionProvider),
|
|
114738
|
+
/* harmony export */ LocalUnitFormatProvider: () => (/* reexport safe */ _quantity_formatting_LocalUnitFormatProvider__WEBPACK_IMPORTED_MODULE_76__.LocalUnitFormatProvider),
|
|
114739
|
+
/* harmony export */ LocalhostIpcApp: () => (/* reexport safe */ _LocalhostIpcApp__WEBPACK_IMPORTED_MODULE_121__.LocalhostIpcApp),
|
|
114740
|
+
/* harmony export */ LocateAction: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateAction),
|
|
114741
|
+
/* harmony export */ LocateFilterStatus: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateFilterStatus),
|
|
114742
|
+
/* harmony export */ LocateOptions: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateOptions),
|
|
114743
|
+
/* harmony export */ LocateResponse: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.LocateResponse),
|
|
114606
114744
|
/* harmony export */ LockedStates: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.LockedStates),
|
|
114607
|
-
/* harmony export */ LogoDecoration: () => (/* reexport safe */
|
|
114608
|
-
/* harmony export */ LookAndMoveTool: () => (/* reexport safe */
|
|
114609
|
-
/* harmony export */ LookViewTool: () => (/* reexport safe */
|
|
114610
|
-
/* harmony export */ ManipulatorToolEvent: () => (/* reexport safe */
|
|
114611
|
-
/* harmony export */ MapCartoRectangle: () => (/* reexport safe */
|
|
114612
|
-
/* harmony export */ MapFeatureInfoRecord: () => (/* reexport safe */
|
|
114613
|
-
/* harmony export */ MapLayerFeatureRecord: () => (/* reexport safe */
|
|
114614
|
-
/* harmony export */ MapLayerFormat: () => (/* reexport safe */
|
|
114615
|
-
/* harmony export */ MapLayerFormatRegistry: () => (/* reexport safe */
|
|
114616
|
-
/* harmony export */ MapLayerImageryProvider: () => (/* reexport safe */
|
|
114617
|
-
/* harmony export */ MapLayerImageryProviderStatus: () => (/* reexport safe */
|
|
114618
|
-
/* harmony export */ MapLayerSource: () => (/* reexport safe */
|
|
114619
|
-
/* harmony export */ MapLayerSourceStatus: () => (/* reexport safe */
|
|
114620
|
-
/* harmony export */ MapLayerSources: () => (/* reexport safe */
|
|
114621
|
-
/* harmony export */ MapLayerTileTreeReference: () => (/* reexport safe */
|
|
114622
|
-
/* harmony export */ MapTile: () => (/* reexport safe */
|
|
114623
|
-
/* harmony export */ MapTileProjection: () => (/* reexport safe */
|
|
114624
|
-
/* harmony export */ MapTileTree: () => (/* reexport safe */
|
|
114625
|
-
/* harmony export */ MapTileTreeReference: () => (/* reexport safe */
|
|
114626
|
-
/* harmony export */ MapTileTreeScaleRangeVisibility: () => (/* reexport safe */
|
|
114627
|
-
/* harmony export */ MapTilingScheme: () => (/* reexport safe */
|
|
114628
|
-
/* harmony export */ MarginPercent: () => (/* reexport safe */
|
|
114629
|
-
/* harmony export */ Marker: () => (/* reexport safe */
|
|
114630
|
-
/* harmony export */ MarkerSet: () => (/* reexport safe */
|
|
114631
|
-
/* harmony export */ MeasureAreaByPointsTool: () => (/* reexport safe */
|
|
114632
|
-
/* harmony export */ MeasureAreaTool: () => (/* reexport safe */
|
|
114633
|
-
/* harmony export */ MeasureDistanceTool: () => (/* reexport safe */
|
|
114634
|
-
/* harmony export */ MeasureElementTool: () => (/* reexport safe */
|
|
114635
|
-
/* harmony export */ MeasureLengthTool: () => (/* reexport safe */
|
|
114636
|
-
/* harmony export */ MeasureLocationTool: () => (/* reexport safe */
|
|
114637
|
-
/* harmony export */ MeasureVolumeTool: () => (/* reexport safe */
|
|
114638
|
-
/* harmony export */ MessageBoxIconType: () => (/* reexport safe */
|
|
114639
|
-
/* harmony export */ MessageBoxType: () => (/* reexport safe */
|
|
114640
|
-
/* harmony export */ MessageBoxValue: () => (/* reexport safe */
|
|
114641
|
-
/* harmony export */ ModelSelectorState: () => (/* reexport safe */
|
|
114642
|
-
/* harmony export */ ModelState: () => (/* reexport safe */
|
|
114643
|
-
/* harmony export */ ModifyElementSource: () => (/* reexport safe */
|
|
114644
|
-
/* harmony export */ MutableChangeFlags: () => (/* reexport safe */
|
|
114645
|
-
/* harmony export */ NativeApp: () => (/* reexport safe */
|
|
114646
|
-
/* harmony export */ NativeAppLogger: () => (/* reexport safe */
|
|
114647
|
-
/* harmony export */ NoRenderApp: () => (/* reexport safe */
|
|
114648
|
-
/* harmony export */ NotificationHandler: () => (/* reexport safe */
|
|
114649
|
-
/* harmony export */ NotificationManager: () => (/* reexport safe */
|
|
114650
|
-
/* harmony export */ NotifyMessageDetails: () => (/* reexport safe */
|
|
114651
|
-
/* harmony export */ NullRenderSystem: () => (/* reexport safe */
|
|
114652
|
-
/* harmony export */ NullTarget: () => (/* reexport safe */
|
|
114653
|
-
/* harmony export */ OffScreenViewport: () => (/* reexport safe */
|
|
114654
|
-
/* harmony export */ OnScreenTarget: () => (/* reexport safe */
|
|
114655
|
-
/* harmony export */ OrthographicViewState: () => (/* reexport safe */
|
|
114656
|
-
/* harmony export */ OutputMessageAlert: () => (/* reexport safe */
|
|
114657
|
-
/* harmony export */ OutputMessagePriority: () => (/* reexport safe */
|
|
114658
|
-
/* harmony export */ OutputMessageType: () => (/* reexport safe */
|
|
114659
|
-
/* harmony export */ PanViewTool: () => (/* reexport safe */
|
|
114660
|
-
/* harmony export */ ParseAndRunResult: () => (/* reexport safe */
|
|
114661
|
-
/* harmony export */ ParticleCollectionBuilder: () => (/* reexport safe */
|
|
114662
|
-
/* harmony export */ PerModelCategoryVisibility: () => (/* reexport safe */
|
|
114663
|
-
/* harmony export */ PerformanceMetrics: () => (/* reexport safe */
|
|
114664
|
-
/* harmony export */ PhysicalModelState: () => (/* reexport safe */
|
|
114665
|
-
/* harmony export */ Pixel: () => (/* reexport safe */
|
|
114666
|
-
/* harmony export */ PlanarClipMaskState: () => (/* reexport safe */
|
|
114667
|
-
/* harmony export */ PlanarGridTransparency: () => (/* reexport safe */
|
|
114668
|
-
/* harmony export */ PrimitiveTool: () => (/* reexport safe */
|
|
114669
|
-
/* harmony export */ PrimitiveVisibility: () => (/* reexport safe */
|
|
114670
|
-
/* harmony export */ QuadId: () => (/* reexport safe */
|
|
114671
|
-
/* harmony export */ QuantityFormatter: () => (/* reexport safe */
|
|
114672
|
-
/* harmony export */ QuantityType: () => (/* reexport safe */
|
|
114673
|
-
/* harmony export */ QuantityTypeFormatsProvider: () => (/* reexport safe */
|
|
114674
|
-
/* harmony export */ RealityDataError: () => (/* reexport safe */
|
|
114675
|
-
/* harmony export */ RealityDataSource: () => (/* reexport safe */
|
|
114676
|
-
/* harmony export */ RealityDataSourceProviderRegistry: () => (/* reexport safe */
|
|
114677
|
-
/* harmony export */ RealityMeshParams: () => (/* reexport safe */
|
|
114678
|
-
/* harmony export */ RealityMeshParamsBuilder: () => (/* reexport safe */
|
|
114679
|
-
/* harmony export */ RealityModelTileUtils: () => (/* reexport safe */
|
|
114680
|
-
/* harmony export */ RealityTile: () => (/* reexport safe */
|
|
114681
|
-
/* harmony export */ RealityTileLoader: () => (/* reexport safe */
|
|
114682
|
-
/* harmony export */ RealityTileTree: () => (/* reexport safe */
|
|
114683
|
-
/* harmony export */ RemoteExtensionProvider: () => (/* reexport safe */
|
|
114684
|
-
/* harmony export */ RenderClipVolume: () => (/* reexport safe */
|
|
114685
|
-
/* harmony export */ RenderContext: () => (/* reexport safe */
|
|
114686
|
-
/* harmony export */ RenderDiagnostics: () => (/* reexport safe */
|
|
114687
|
-
/* harmony export */ RenderGraphic: () => (/* reexport safe */
|
|
114688
|
-
/* harmony export */ RenderGraphicOwner: () => (/* reexport safe */
|
|
114689
|
-
/* harmony export */ RenderInstancesParams: () => (/* reexport safe */
|
|
114690
|
-
/* harmony export */ RenderInstancesParamsBuilder: () => (/* reexport safe */
|
|
114691
|
-
/* harmony export */ RenderMemory: () => (/* reexport safe */
|
|
114692
|
-
/* harmony export */ RenderSystem: () => (/* reexport safe */
|
|
114693
|
-
/* harmony export */ RenderTarget: () => (/* reexport safe */
|
|
114694
|
-
/* harmony export */ RotateViewTool: () => (/* reexport safe */
|
|
114745
|
+
/* harmony export */ LogoDecoration: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.LogoDecoration),
|
|
114746
|
+
/* harmony export */ LookAndMoveTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.LookAndMoveTool),
|
|
114747
|
+
/* harmony export */ LookViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.LookViewTool),
|
|
114748
|
+
/* harmony export */ ManipulatorToolEvent: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ManipulatorToolEvent),
|
|
114749
|
+
/* harmony export */ MapCartoRectangle: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapCartoRectangle),
|
|
114750
|
+
/* harmony export */ MapFeatureInfoRecord: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapFeatureInfoRecord),
|
|
114751
|
+
/* harmony export */ MapLayerFeatureRecord: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerFeatureRecord),
|
|
114752
|
+
/* harmony export */ MapLayerFormat: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerFormat),
|
|
114753
|
+
/* harmony export */ MapLayerFormatRegistry: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerFormatRegistry),
|
|
114754
|
+
/* harmony export */ MapLayerImageryProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerImageryProvider),
|
|
114755
|
+
/* harmony export */ MapLayerImageryProviderStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerImageryProviderStatus),
|
|
114756
|
+
/* harmony export */ MapLayerSource: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerSource),
|
|
114757
|
+
/* harmony export */ MapLayerSourceStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerSourceStatus),
|
|
114758
|
+
/* harmony export */ MapLayerSources: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerSources),
|
|
114759
|
+
/* harmony export */ MapLayerTileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapLayerTileTreeReference),
|
|
114760
|
+
/* harmony export */ MapTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTile),
|
|
114761
|
+
/* harmony export */ MapTileProjection: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTileProjection),
|
|
114762
|
+
/* harmony export */ MapTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTileTree),
|
|
114763
|
+
/* harmony export */ MapTileTreeReference: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.MapTileTreeReference),
|
|
114764
|
+
/* harmony export */ MapTileTreeScaleRangeVisibility: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTileTreeScaleRangeVisibility),
|
|
114765
|
+
/* harmony export */ MapTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.MapTilingScheme),
|
|
114766
|
+
/* harmony export */ MarginPercent: () => (/* reexport safe */ _MarginPercent__WEBPACK_IMPORTED_MODULE_38__.MarginPercent),
|
|
114767
|
+
/* harmony export */ Marker: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_39__.Marker),
|
|
114768
|
+
/* harmony export */ MarkerSet: () => (/* reexport safe */ _Marker__WEBPACK_IMPORTED_MODULE_39__.MarkerSet),
|
|
114769
|
+
/* harmony export */ MeasureAreaByPointsTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureAreaByPointsTool),
|
|
114770
|
+
/* harmony export */ MeasureAreaTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureAreaTool),
|
|
114771
|
+
/* harmony export */ MeasureDistanceTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureDistanceTool),
|
|
114772
|
+
/* harmony export */ MeasureElementTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureElementTool),
|
|
114773
|
+
/* harmony export */ MeasureLengthTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureLengthTool),
|
|
114774
|
+
/* harmony export */ MeasureLocationTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureLocationTool),
|
|
114775
|
+
/* harmony export */ MeasureVolumeTool: () => (/* reexport safe */ _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__.MeasureVolumeTool),
|
|
114776
|
+
/* harmony export */ MessageBoxIconType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.MessageBoxIconType),
|
|
114777
|
+
/* harmony export */ MessageBoxType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.MessageBoxType),
|
|
114778
|
+
/* harmony export */ MessageBoxValue: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.MessageBoxValue),
|
|
114779
|
+
/* harmony export */ ModelSelectorState: () => (/* reexport safe */ _ModelSelectorState__WEBPACK_IMPORTED_MODULE_40__.ModelSelectorState),
|
|
114780
|
+
/* harmony export */ ModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.ModelState),
|
|
114781
|
+
/* harmony export */ ModifyElementSource: () => (/* reexport safe */ _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__.ModifyElementSource),
|
|
114782
|
+
/* harmony export */ MutableChangeFlags: () => (/* reexport safe */ _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__.MutableChangeFlags),
|
|
114783
|
+
/* harmony export */ NativeApp: () => (/* reexport safe */ _NativeApp__WEBPACK_IMPORTED_MODULE_42__.NativeApp),
|
|
114784
|
+
/* harmony export */ NativeAppLogger: () => (/* reexport safe */ _NativeAppLogger__WEBPACK_IMPORTED_MODULE_43__.NativeAppLogger),
|
|
114785
|
+
/* harmony export */ NoRenderApp: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__.NoRenderApp),
|
|
114786
|
+
/* harmony export */ NotificationHandler: () => (/* reexport safe */ _IpcApp__WEBPACK_IMPORTED_MODULE_36__.NotificationHandler),
|
|
114787
|
+
/* harmony export */ NotificationManager: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.NotificationManager),
|
|
114788
|
+
/* harmony export */ NotifyMessageDetails: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.NotifyMessageDetails),
|
|
114789
|
+
/* harmony export */ NullRenderSystem: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__.NullRenderSystem),
|
|
114790
|
+
/* harmony export */ NullTarget: () => (/* reexport safe */ _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__.NullTarget),
|
|
114791
|
+
/* harmony export */ OffScreenViewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.OffScreenViewport),
|
|
114792
|
+
/* harmony export */ OnScreenTarget: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.OnScreenTarget),
|
|
114793
|
+
/* harmony export */ OrthographicViewState: () => (/* reexport safe */ _SpatialViewState__WEBPACK_IMPORTED_MODULE_51__.OrthographicViewState),
|
|
114794
|
+
/* harmony export */ OutputMessageAlert: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.OutputMessageAlert),
|
|
114795
|
+
/* harmony export */ OutputMessagePriority: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.OutputMessagePriority),
|
|
114796
|
+
/* harmony export */ OutputMessageType: () => (/* reexport safe */ _NotificationManager__WEBPACK_IMPORTED_MODULE_45__.OutputMessageType),
|
|
114797
|
+
/* harmony export */ PanViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.PanViewTool),
|
|
114798
|
+
/* harmony export */ ParseAndRunResult: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.ParseAndRunResult),
|
|
114799
|
+
/* harmony export */ ParticleCollectionBuilder: () => (/* reexport safe */ _render_ParticleCollectionBuilder__WEBPACK_IMPORTED_MODULE_88__.ParticleCollectionBuilder),
|
|
114800
|
+
/* harmony export */ PerModelCategoryVisibility: () => (/* reexport safe */ _PerModelCategoryVisibility__WEBPACK_IMPORTED_MODULE_46__.PerModelCategoryVisibility),
|
|
114801
|
+
/* harmony export */ PerformanceMetrics: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.PerformanceMetrics),
|
|
114802
|
+
/* harmony export */ PhysicalModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.PhysicalModelState),
|
|
114803
|
+
/* harmony export */ Pixel: () => (/* reexport safe */ _render_Pixel__WEBPACK_IMPORTED_MODULE_89__.Pixel),
|
|
114804
|
+
/* harmony export */ PlanarClipMaskState: () => (/* reexport safe */ _PlanarClipMaskState__WEBPACK_IMPORTED_MODULE_47__.PlanarClipMaskState),
|
|
114805
|
+
/* harmony export */ PlanarGridTransparency: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_95__.PlanarGridTransparency),
|
|
114806
|
+
/* harmony export */ PrimitiveTool: () => (/* reexport safe */ _tools_PrimitiveTool__WEBPACK_IMPORTED_MODULE_110__.PrimitiveTool),
|
|
114807
|
+
/* harmony export */ PrimitiveVisibility: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.PrimitiveVisibility),
|
|
114808
|
+
/* harmony export */ QuadId: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.QuadId),
|
|
114809
|
+
/* harmony export */ QuantityFormatter: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.QuantityFormatter),
|
|
114810
|
+
/* harmony export */ QuantityType: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.QuantityType),
|
|
114811
|
+
/* harmony export */ QuantityTypeFormatsProvider: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.QuantityTypeFormatsProvider),
|
|
114812
|
+
/* harmony export */ RealityDataError: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.RealityDataError),
|
|
114813
|
+
/* harmony export */ RealityDataSource: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.RealityDataSource),
|
|
114814
|
+
/* harmony export */ RealityDataSourceProviderRegistry: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.RealityDataSourceProviderRegistry),
|
|
114815
|
+
/* harmony export */ RealityMeshParams: () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_91__.RealityMeshParams),
|
|
114816
|
+
/* harmony export */ RealityMeshParamsBuilder: () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_91__.RealityMeshParamsBuilder),
|
|
114817
|
+
/* harmony export */ RealityModelTileUtils: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.RealityModelTileUtils),
|
|
114818
|
+
/* harmony export */ RealityTile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.RealityTile),
|
|
114819
|
+
/* harmony export */ RealityTileLoader: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.RealityTileLoader),
|
|
114820
|
+
/* harmony export */ RealityTileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.RealityTileTree),
|
|
114821
|
+
/* harmony export */ RemoteExtensionProvider: () => (/* reexport safe */ _extension_providers_RemoteExtensionProvider__WEBPACK_IMPORTED_MODULE_70__.RemoteExtensionProvider),
|
|
114822
|
+
/* harmony export */ RenderClipVolume: () => (/* reexport safe */ _render_RenderClipVolume__WEBPACK_IMPORTED_MODULE_92__.RenderClipVolume),
|
|
114823
|
+
/* harmony export */ RenderContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.RenderContext),
|
|
114824
|
+
/* harmony export */ RenderDiagnostics: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.RenderDiagnostics),
|
|
114825
|
+
/* harmony export */ RenderGraphic: () => (/* reexport safe */ _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_93__.RenderGraphic),
|
|
114826
|
+
/* harmony export */ RenderGraphicOwner: () => (/* reexport safe */ _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_93__.RenderGraphicOwner),
|
|
114827
|
+
/* harmony export */ RenderInstancesParams: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.RenderInstancesParams),
|
|
114828
|
+
/* harmony export */ RenderInstancesParamsBuilder: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.RenderInstancesParamsBuilder),
|
|
114829
|
+
/* harmony export */ RenderMemory: () => (/* reexport safe */ _render_RenderMemory__WEBPACK_IMPORTED_MODULE_94__.RenderMemory),
|
|
114830
|
+
/* harmony export */ RenderSystem: () => (/* reexport safe */ _render_RenderSystem__WEBPACK_IMPORTED_MODULE_95__.RenderSystem),
|
|
114831
|
+
/* harmony export */ RenderTarget: () => (/* reexport safe */ _render_RenderTarget__WEBPACK_IMPORTED_MODULE_96__.RenderTarget),
|
|
114832
|
+
/* harmony export */ RotateViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.RotateViewTool),
|
|
114695
114833
|
/* harmony export */ RotationMode: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.RotationMode),
|
|
114696
114834
|
/* harmony export */ RoundOff: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.RoundOff),
|
|
114697
114835
|
/* harmony export */ SavedState: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.SavedState),
|
|
114698
|
-
/* harmony export */ Scene: () => (/* reexport safe */
|
|
114699
|
-
/* harmony export */ SceneContext: () => (/* reexport safe */
|
|
114700
|
-
/* harmony export */ ScreenViewport: () => (/* reexport safe */
|
|
114701
|
-
/* harmony export */ ScrollViewTool: () => (/* reexport safe */
|
|
114702
|
-
/* harmony export */ SectionDrawingModelState: () => (/* reexport safe */
|
|
114703
|
-
/* harmony export */ SelectionMethod: () => (/* reexport safe */
|
|
114704
|
-
/* harmony export */ SelectionMode: () => (/* reexport safe */
|
|
114705
|
-
/* harmony export */ SelectionProcessing: () => (/* reexport safe */
|
|
114706
|
-
/* harmony export */ SelectionSet: () => (/* reexport safe */
|
|
114707
|
-
/* harmony export */ SelectionSetEventType: () => (/* reexport safe */
|
|
114708
|
-
/* harmony export */ SelectionTool: () => (/* reexport safe */
|
|
114709
|
-
/* harmony export */ SetupCameraTool: () => (/* reexport safe */
|
|
114710
|
-
/* harmony export */ SetupWalkCameraTool: () => (/* reexport safe */
|
|
114711
|
-
/* harmony export */ SheetModelState: () => (/* reexport safe */
|
|
114712
|
-
/* harmony export */ SheetViewState: () => (/* reexport safe */
|
|
114713
|
-
/* harmony export */ SnapDetail: () => (/* reexport safe */
|
|
114714
|
-
/* harmony export */ SnapHeat: () => (/* reexport safe */
|
|
114715
|
-
/* harmony export */ SnapMode: () => (/* reexport safe */
|
|
114716
|
-
/* harmony export */ SnapStatus: () => (/* reexport safe */
|
|
114717
|
-
/* harmony export */ SnapshotConnection: () => (/* reexport safe */
|
|
114718
|
-
/* harmony export */ SpatialClassifiersState: () => (/* reexport safe */
|
|
114719
|
-
/* harmony export */ SpatialLocationModelState: () => (/* reexport safe */
|
|
114720
|
-
/* harmony export */ SpatialModelState: () => (/* reexport safe */
|
|
114721
|
-
/* harmony export */ SpatialTileTreeReferences: () => (/* reexport safe */
|
|
114722
|
-
/* harmony export */ SpatialViewState: () => (/* reexport safe */
|
|
114723
|
-
/* harmony export */ Sprite: () => (/* reexport safe */
|
|
114724
|
-
/* harmony export */ SpriteLocation: () => (/* reexport safe */
|
|
114725
|
-
/* harmony export */ StandardView: () => (/* reexport safe */
|
|
114726
|
-
/* harmony export */ StandardViewId: () => (/* reexport safe */
|
|
114727
|
-
/* harmony export */ StandardViewTool: () => (/* reexport safe */
|
|
114728
|
-
/* harmony export */ StartOrResume: () => (/* reexport safe */
|
|
114729
|
-
/* harmony export */ Storage: () => (/* reexport safe */
|
|
114730
|
-
/* harmony export */ SubCategoriesCache: () => (/* reexport safe */
|
|
114731
|
-
/* harmony export */ SurveyLengthDescription: () => (/* reexport safe */
|
|
114732
|
-
/* harmony export */ SuspendedToolState: () => (/* reexport safe */
|
|
114733
|
-
/* harmony export */ Target: () => (/* reexport safe */
|
|
114836
|
+
/* harmony export */ Scene: () => (/* reexport safe */ _render_Scene__WEBPACK_IMPORTED_MODULE_97__.Scene),
|
|
114837
|
+
/* harmony export */ SceneContext: () => (/* reexport safe */ _ViewContext__WEBPACK_IMPORTED_MODULE_59__.SceneContext),
|
|
114838
|
+
/* harmony export */ ScreenViewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.ScreenViewport),
|
|
114839
|
+
/* harmony export */ ScrollViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ScrollViewTool),
|
|
114840
|
+
/* harmony export */ SectionDrawingModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SectionDrawingModelState),
|
|
114841
|
+
/* harmony export */ SelectionMethod: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionMethod),
|
|
114842
|
+
/* harmony export */ SelectionMode: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionMode),
|
|
114843
|
+
/* harmony export */ SelectionProcessing: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionProcessing),
|
|
114844
|
+
/* harmony export */ SelectionSet: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_48__.SelectionSet),
|
|
114845
|
+
/* harmony export */ SelectionSetEventType: () => (/* reexport safe */ _SelectionSet__WEBPACK_IMPORTED_MODULE_48__.SelectionSetEventType),
|
|
114846
|
+
/* harmony export */ SelectionTool: () => (/* reexport safe */ _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__.SelectionTool),
|
|
114847
|
+
/* harmony export */ SetupCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.SetupCameraTool),
|
|
114848
|
+
/* harmony export */ SetupWalkCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.SetupWalkCameraTool),
|
|
114849
|
+
/* harmony export */ SheetModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SheetModelState),
|
|
114850
|
+
/* harmony export */ SheetViewState: () => (/* reexport safe */ _SheetViewState__WEBPACK_IMPORTED_MODULE_49__.SheetViewState),
|
|
114851
|
+
/* harmony export */ SnapDetail: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.SnapDetail),
|
|
114852
|
+
/* harmony export */ SnapHeat: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.SnapHeat),
|
|
114853
|
+
/* harmony export */ SnapMode: () => (/* reexport safe */ _HitDetail__WEBPACK_IMPORTED_MODULE_32__.SnapMode),
|
|
114854
|
+
/* harmony export */ SnapStatus: () => (/* reexport safe */ _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__.SnapStatus),
|
|
114855
|
+
/* harmony export */ SnapshotConnection: () => (/* reexport safe */ _IModelConnection__WEBPACK_IMPORTED_MODULE_34__.SnapshotConnection),
|
|
114856
|
+
/* harmony export */ SpatialClassifiersState: () => (/* reexport safe */ _SpatialClassifiersState__WEBPACK_IMPORTED_MODULE_50__.SpatialClassifiersState),
|
|
114857
|
+
/* harmony export */ SpatialLocationModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SpatialLocationModelState),
|
|
114858
|
+
/* harmony export */ SpatialModelState: () => (/* reexport safe */ _ModelState__WEBPACK_IMPORTED_MODULE_41__.SpatialModelState),
|
|
114859
|
+
/* harmony export */ SpatialTileTreeReferences: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.SpatialTileTreeReferences),
|
|
114860
|
+
/* harmony export */ SpatialViewState: () => (/* reexport safe */ _SpatialViewState__WEBPACK_IMPORTED_MODULE_51__.SpatialViewState),
|
|
114861
|
+
/* harmony export */ Sprite: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_52__.Sprite),
|
|
114862
|
+
/* harmony export */ SpriteLocation: () => (/* reexport safe */ _Sprites__WEBPACK_IMPORTED_MODULE_52__.SpriteLocation),
|
|
114863
|
+
/* harmony export */ StandardView: () => (/* reexport safe */ _StandardView__WEBPACK_IMPORTED_MODULE_53__.StandardView),
|
|
114864
|
+
/* harmony export */ StandardViewId: () => (/* reexport safe */ _StandardView__WEBPACK_IMPORTED_MODULE_53__.StandardViewId),
|
|
114865
|
+
/* harmony export */ StandardViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.StandardViewTool),
|
|
114866
|
+
/* harmony export */ StartOrResume: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.StartOrResume),
|
|
114867
|
+
/* harmony export */ Storage: () => (/* reexport safe */ _NativeApp__WEBPACK_IMPORTED_MODULE_42__.Storage),
|
|
114868
|
+
/* harmony export */ SubCategoriesCache: () => (/* reexport safe */ _SubCategoriesCache__WEBPACK_IMPORTED_MODULE_54__.SubCategoriesCache),
|
|
114869
|
+
/* harmony export */ SurveyLengthDescription: () => (/* reexport safe */ _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__.SurveyLengthDescription),
|
|
114870
|
+
/* harmony export */ SuspendedToolState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.SuspendedToolState),
|
|
114871
|
+
/* harmony export */ Target: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.Target),
|
|
114734
114872
|
/* harmony export */ TentativeOrAccuSnap: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.TentativeOrAccuSnap),
|
|
114735
|
-
/* harmony export */ TentativePoint: () => (/* reexport safe */
|
|
114736
|
-
/* harmony export */ TerrainDisplayOverrides: () => (/* reexport safe */
|
|
114737
|
-
/* harmony export */ TerrainMeshProvider: () => (/* reexport safe */
|
|
114738
|
-
/* harmony export */ TerrainProviderRegistry: () => (/* reexport safe */
|
|
114873
|
+
/* harmony export */ TentativePoint: () => (/* reexport safe */ _TentativePoint__WEBPACK_IMPORTED_MODULE_55__.TentativePoint),
|
|
114874
|
+
/* harmony export */ TerrainDisplayOverrides: () => (/* reexport safe */ _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__.TerrainDisplayOverrides),
|
|
114875
|
+
/* harmony export */ TerrainMeshProvider: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TerrainMeshProvider),
|
|
114876
|
+
/* harmony export */ TerrainProviderRegistry: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TerrainProviderRegistry),
|
|
114739
114877
|
/* harmony export */ ThreeAxes: () => (/* reexport safe */ _AccuDraw__WEBPACK_IMPORTED_MODULE_0__.ThreeAxes),
|
|
114740
|
-
/* harmony export */ Tile: () => (/* reexport safe */
|
|
114741
|
-
/* harmony export */ TileAdmin: () => (/* reexport safe */
|
|
114742
|
-
/* harmony export */ TileBoundingBoxes: () => (/* reexport safe */
|
|
114743
|
-
/* harmony export */ TileDrawArgs: () => (/* reexport safe */
|
|
114744
|
-
/* harmony export */ TileGeometryCollector: () => (/* reexport safe */
|
|
114745
|
-
/* harmony export */ TileGraphicType: () => (/* reexport safe */
|
|
114746
|
-
/* harmony export */ TileLoadPriority: () => (/* reexport safe */
|
|
114747
|
-
/* harmony export */ TileLoadStatus: () => (/* reexport safe */
|
|
114748
|
-
/* harmony export */ TileRequest: () => (/* reexport safe */
|
|
114749
|
-
/* harmony export */ TileRequestChannel: () => (/* reexport safe */
|
|
114750
|
-
/* harmony export */ TileRequestChannelStatistics: () => (/* reexport safe */
|
|
114751
|
-
/* harmony export */ TileRequestChannels: () => (/* reexport safe */
|
|
114752
|
-
/* harmony export */ TileTree: () => (/* reexport safe */
|
|
114753
|
-
/* harmony export */ TileTreeLoadStatus: () => (/* reexport safe */
|
|
114754
|
-
/* harmony export */ TileTreeReference: () => (/* reexport safe */
|
|
114755
|
-
/* harmony export */ TileUsageMarker: () => (/* reexport safe */
|
|
114756
|
-
/* harmony export */ TileUser: () => (/* reexport safe */
|
|
114757
|
-
/* harmony export */ TileVisibility: () => (/* reexport safe */
|
|
114758
|
-
/* harmony export */ Tiles: () => (/* reexport safe */
|
|
114759
|
-
/* harmony export */ Tool: () => (/* reexport safe */
|
|
114760
|
-
/* harmony export */ ToolAdmin: () => (/* reexport safe */
|
|
114761
|
-
/* harmony export */ ToolAssistance: () => (/* reexport safe */
|
|
114762
|
-
/* harmony export */ ToolAssistanceImage: () => (/* reexport safe */
|
|
114763
|
-
/* harmony export */ ToolAssistanceInputMethod: () => (/* reexport safe */
|
|
114764
|
-
/* harmony export */ ToolRegistry: () => (/* reexport safe */
|
|
114765
|
-
/* harmony export */ ToolSettings: () => (/* reexport safe */
|
|
114766
|
-
/* harmony export */ ToolSettingsState: () => (/* reexport safe */
|
|
114767
|
-
/* harmony export */ ToolState: () => (/* reexport safe */
|
|
114878
|
+
/* harmony export */ Tile: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.Tile),
|
|
114879
|
+
/* harmony export */ TileAdmin: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileAdmin),
|
|
114880
|
+
/* harmony export */ TileBoundingBoxes: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileBoundingBoxes),
|
|
114881
|
+
/* harmony export */ TileDrawArgs: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileDrawArgs),
|
|
114882
|
+
/* harmony export */ TileGeometryCollector: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileGeometryCollector),
|
|
114883
|
+
/* harmony export */ TileGraphicType: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileGraphicType),
|
|
114884
|
+
/* harmony export */ TileLoadPriority: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileLoadPriority),
|
|
114885
|
+
/* harmony export */ TileLoadStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileLoadStatus),
|
|
114886
|
+
/* harmony export */ TileRequest: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequest),
|
|
114887
|
+
/* harmony export */ TileRequestChannel: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequestChannel),
|
|
114888
|
+
/* harmony export */ TileRequestChannelStatistics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequestChannelStatistics),
|
|
114889
|
+
/* harmony export */ TileRequestChannels: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileRequestChannels),
|
|
114890
|
+
/* harmony export */ TileTree: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileTree),
|
|
114891
|
+
/* harmony export */ TileTreeLoadStatus: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileTreeLoadStatus),
|
|
114892
|
+
/* harmony export */ TileTreeReference: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileTreeReference),
|
|
114893
|
+
/* harmony export */ TileUsageMarker: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileUsageMarker),
|
|
114894
|
+
/* harmony export */ TileUser: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileUser),
|
|
114895
|
+
/* harmony export */ TileVisibility: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.TileVisibility),
|
|
114896
|
+
/* harmony export */ Tiles: () => (/* reexport safe */ _Tiles__WEBPACK_IMPORTED_MODULE_56__.Tiles),
|
|
114897
|
+
/* harmony export */ Tool: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.Tool),
|
|
114898
|
+
/* harmony export */ ToolAdmin: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ToolAdmin),
|
|
114899
|
+
/* harmony export */ ToolAssistance: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__.ToolAssistance),
|
|
114900
|
+
/* harmony export */ ToolAssistanceImage: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__.ToolAssistanceImage),
|
|
114901
|
+
/* harmony export */ ToolAssistanceInputMethod: () => (/* reexport safe */ _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__.ToolAssistanceInputMethod),
|
|
114902
|
+
/* harmony export */ ToolRegistry: () => (/* reexport safe */ _tools_Tool__WEBPACK_IMPORTED_MODULE_112__.ToolRegistry),
|
|
114903
|
+
/* harmony export */ ToolSettings: () => (/* reexport safe */ _tools_ToolSettings__WEBPACK_IMPORTED_MODULE_113__.ToolSettings),
|
|
114904
|
+
/* harmony export */ ToolSettingsState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ToolSettingsState),
|
|
114905
|
+
/* harmony export */ ToolState: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.ToolState),
|
|
114768
114906
|
/* harmony export */ TouchCursor: () => (/* reexport safe */ _AccuSnap__WEBPACK_IMPORTED_MODULE_1__.TouchCursor),
|
|
114769
|
-
/* harmony export */ TwoWayViewportFrustumSync: () => (/* reexport safe */
|
|
114770
|
-
/* harmony export */ TwoWayViewportSync: () => (/* reexport safe */
|
|
114771
|
-
/* harmony export */ UniformType: () => (/* reexport safe */
|
|
114772
|
-
/* harmony export */ VaryingType: () => (/* reexport safe */
|
|
114773
|
-
/* harmony export */ ViewClipByElementTool: () => (/* reexport safe */
|
|
114774
|
-
/* harmony export */ ViewClipByPlaneTool: () => (/* reexport safe */
|
|
114775
|
-
/* harmony export */ ViewClipByRangeTool: () => (/* reexport safe */
|
|
114776
|
-
/* harmony export */ ViewClipByShapeTool: () => (/* reexport safe */
|
|
114777
|
-
/* harmony export */ ViewClipClearTool: () => (/* reexport safe */
|
|
114778
|
-
/* harmony export */ ViewClipControlArrow: () => (/* reexport safe */
|
|
114779
|
-
/* harmony export */ ViewClipDecoration: () => (/* reexport safe */
|
|
114780
|
-
/* harmony export */ ViewClipDecorationProvider: () => (/* reexport safe */
|
|
114781
|
-
/* harmony export */ ViewClipModifyTool: () => (/* reexport safe */
|
|
114782
|
-
/* harmony export */ ViewClipPlanesModifyTool: () => (/* reexport safe */
|
|
114783
|
-
/* harmony export */ ViewClipShapeModifyTool: () => (/* reexport safe */
|
|
114784
|
-
/* harmony export */ ViewClipTool: () => (/* reexport safe */
|
|
114785
|
-
/* harmony export */ ViewCreator2d: () => (/* reexport safe */
|
|
114786
|
-
/* harmony export */ ViewCreator3d: () => (/* reexport safe */
|
|
114787
|
-
/* harmony export */ ViewGlobalLocationConstants: () => (/* reexport safe */
|
|
114788
|
-
/* harmony export */ ViewGlobeBirdTool: () => (/* reexport safe */
|
|
114789
|
-
/* harmony export */ ViewGlobeIModelTool: () => (/* reexport safe */
|
|
114790
|
-
/* harmony export */ ViewGlobeLocationTool: () => (/* reexport safe */
|
|
114791
|
-
/* harmony export */ ViewGlobeSatelliteTool: () => (/* reexport safe */
|
|
114792
|
-
/* harmony export */ ViewHandleArray: () => (/* reexport safe */
|
|
114793
|
-
/* harmony export */ ViewHandleType: () => (/* reexport safe */
|
|
114794
|
-
/* harmony export */ ViewManager: () => (/* reexport safe */
|
|
114795
|
-
/* harmony export */ ViewManip: () => (/* reexport safe */
|
|
114796
|
-
/* harmony export */ ViewPose: () => (/* reexport safe */
|
|
114797
|
-
/* harmony export */ ViewPose2d: () => (/* reexport safe */
|
|
114798
|
-
/* harmony export */ ViewPose3d: () => (/* reexport safe */
|
|
114799
|
-
/* harmony export */ ViewRect: () => (/* reexport safe */
|
|
114800
|
-
/* harmony export */ ViewRedoTool: () => (/* reexport safe */
|
|
114801
|
-
/* harmony export */ ViewState: () => (/* reexport safe */
|
|
114802
|
-
/* harmony export */ ViewState2d: () => (/* reexport safe */
|
|
114803
|
-
/* harmony export */ ViewState3d: () => (/* reexport safe */
|
|
114804
|
-
/* harmony export */ ViewStatus: () => (/* reexport safe */
|
|
114805
|
-
/* harmony export */ ViewToggleCameraTool: () => (/* reexport safe */
|
|
114806
|
-
/* harmony export */ ViewTool: () => (/* reexport safe */
|
|
114807
|
-
/* harmony export */ ViewUndoEvent: () => (/* reexport safe */
|
|
114808
|
-
/* harmony export */ ViewUndoTool: () => (/* reexport safe */
|
|
114809
|
-
/* harmony export */ ViewingSpace: () => (/* reexport safe */
|
|
114810
|
-
/* harmony export */ ViewingToolHandle: () => (/* reexport safe */
|
|
114811
|
-
/* harmony export */ Viewport: () => (/* reexport safe */
|
|
114812
|
-
/* harmony export */ WalkViewTool: () => (/* reexport safe */
|
|
114813
|
-
/* harmony export */ WebMercatorProjection: () => (/* reexport safe */
|
|
114814
|
-
/* harmony export */ WebMercatorTilingScheme: () => (/* reexport safe */
|
|
114815
|
-
/* harmony export */ WheelEventProcessor: () => (/* reexport safe */
|
|
114816
|
-
/* harmony export */ WindowAreaTool: () => (/* reexport safe */
|
|
114817
|
-
/* harmony export */ WmsUtilities: () => (/* reexport safe */
|
|
114818
|
-
/* harmony export */ WorkerGraphicDescriptionContext: () => (/* reexport safe */
|
|
114819
|
-
/* harmony export */ ZoomViewTool: () => (/* reexport safe */
|
|
114820
|
-
/* harmony export */ _callIpcChannel: () => (/* reexport safe */
|
|
114821
|
-
/* harmony export */ _implementationProhibited: () => (/* reexport safe */
|
|
114822
|
-
/* harmony export */ _scheduleScriptReference: () => (/* reexport safe */
|
|
114823
|
-
/* harmony export */ acquireImdlDecoder: () => (/* reexport safe */
|
|
114824
|
-
/* harmony export */ appendQueryParams: () => (/* reexport safe */
|
|
114825
|
-
/* harmony export */ areaToEyeHeight: () => (/* reexport safe */
|
|
114826
|
-
/* harmony export */ areaToEyeHeightFromGcs: () => (/* reexport safe */
|
|
114827
|
-
/* harmony export */ calculateEcefToDbTransformAtLocation: () => (/* reexport safe */
|
|
114828
|
-
/* harmony export */ canvasToImageBuffer: () => (/* reexport safe */
|
|
114829
|
-
/* harmony export */ canvasToResizedCanvasWithBars: () => (/* reexport safe */
|
|
114830
|
-
/* harmony export */ collectMaskRefs: () => (/* reexport safe */
|
|
114831
|
-
/* harmony export */ connectViewportFrusta: () => (/* reexport safe */
|
|
114832
|
-
/* harmony export */ connectViewportViews: () => (/* reexport safe */
|
|
114833
|
-
/* harmony export */ connectViewports: () => (/* reexport safe */
|
|
114834
|
-
/* harmony export */ createQuantityDescription: () => (/* reexport safe */
|
|
114835
|
-
/* harmony export */ createSpatialTileTreeReferences: () => (/* reexport safe */
|
|
114836
|
-
/* harmony export */ createWorkerProxy: () => (/* reexport safe */
|
|
114837
|
-
/* harmony export */ deflateCoordinates: () => (/* reexport safe */
|
|
114838
|
-
/* harmony export */ extractImageSourceDimensions: () => (/* reexport safe */
|
|
114839
|
-
/* harmony export */ eyeToCartographicOnGlobe: () => (/* reexport safe */
|
|
114840
|
-
/* harmony export */ eyeToCartographicOnGlobeFromGcs: () => (/* reexport safe */
|
|
114841
|
-
/* harmony export */ formatAnimationBranchId: () => (/* reexport safe */
|
|
114842
|
-
/* harmony export */ getCenteredViewRect: () => (/* reexport safe */
|
|
114843
|
-
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */
|
|
114844
|
-
/* harmony export */ getCompressedJpegFromCanvas: () => (/* reexport safe */
|
|
114845
|
-
/* harmony export */ getFrustumPlaneIntersectionDepthRange: () => (/* reexport safe */
|
|
114846
|
-
/* harmony export */ getGoogle3dTilesUrl: () => (/* reexport safe */
|
|
114847
|
-
/* harmony export */
|
|
114848
|
-
/* harmony export */
|
|
114849
|
-
/* harmony export */
|
|
114850
|
-
/* harmony export */
|
|
114851
|
-
/* harmony export */
|
|
114852
|
-
/* harmony export */
|
|
114853
|
-
/* harmony export */
|
|
114854
|
-
/* harmony export */
|
|
114855
|
-
/* harmony export */
|
|
114856
|
-
/* harmony export */
|
|
114857
|
-
/* harmony export */
|
|
114858
|
-
/* harmony export */
|
|
114859
|
-
/* harmony export */
|
|
114860
|
-
/* harmony export */
|
|
114861
|
-
/* harmony export */
|
|
114862
|
-
/* harmony export */
|
|
114863
|
-
/* harmony export */
|
|
114864
|
-
/* harmony export */
|
|
114865
|
-
/* harmony export */
|
|
114866
|
-
/* harmony export */
|
|
114867
|
-
/* harmony export */
|
|
114868
|
-
/* harmony export */
|
|
114869
|
-
/* harmony export */
|
|
114870
|
-
/* harmony export */
|
|
114871
|
-
/* harmony export */
|
|
114872
|
-
/* harmony export */
|
|
114873
|
-
/* harmony export */
|
|
114874
|
-
/* harmony export */
|
|
114875
|
-
/* harmony export */
|
|
114876
|
-
/* harmony export */
|
|
114907
|
+
/* harmony export */ TwoWayViewportFrustumSync: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.TwoWayViewportFrustumSync),
|
|
114908
|
+
/* harmony export */ TwoWayViewportSync: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.TwoWayViewportSync),
|
|
114909
|
+
/* harmony export */ UniformType: () => (/* reexport safe */ _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_98__.UniformType),
|
|
114910
|
+
/* harmony export */ VaryingType: () => (/* reexport safe */ _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_98__.VaryingType),
|
|
114911
|
+
/* harmony export */ ViewClipByElementTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByElementTool),
|
|
114912
|
+
/* harmony export */ ViewClipByPlaneTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByPlaneTool),
|
|
114913
|
+
/* harmony export */ ViewClipByRangeTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByRangeTool),
|
|
114914
|
+
/* harmony export */ ViewClipByShapeTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipByShapeTool),
|
|
114915
|
+
/* harmony export */ ViewClipClearTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipClearTool),
|
|
114916
|
+
/* harmony export */ ViewClipControlArrow: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipControlArrow),
|
|
114917
|
+
/* harmony export */ ViewClipDecoration: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipDecoration),
|
|
114918
|
+
/* harmony export */ ViewClipDecorationProvider: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipDecorationProvider),
|
|
114919
|
+
/* harmony export */ ViewClipModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipModifyTool),
|
|
114920
|
+
/* harmony export */ ViewClipPlanesModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipPlanesModifyTool),
|
|
114921
|
+
/* harmony export */ ViewClipShapeModifyTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipShapeModifyTool),
|
|
114922
|
+
/* harmony export */ ViewClipTool: () => (/* reexport safe */ _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__.ViewClipTool),
|
|
114923
|
+
/* harmony export */ ViewCreator2d: () => (/* reexport safe */ _ViewCreator2d__WEBPACK_IMPORTED_MODULE_119__.ViewCreator2d),
|
|
114924
|
+
/* harmony export */ ViewCreator3d: () => (/* reexport safe */ _ViewCreator3d__WEBPACK_IMPORTED_MODULE_120__.ViewCreator3d),
|
|
114925
|
+
/* harmony export */ ViewGlobalLocationConstants: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.ViewGlobalLocationConstants),
|
|
114926
|
+
/* harmony export */ ViewGlobeBirdTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeBirdTool),
|
|
114927
|
+
/* harmony export */ ViewGlobeIModelTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeIModelTool),
|
|
114928
|
+
/* harmony export */ ViewGlobeLocationTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeLocationTool),
|
|
114929
|
+
/* harmony export */ ViewGlobeSatelliteTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewGlobeSatelliteTool),
|
|
114930
|
+
/* harmony export */ ViewHandleArray: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewHandleArray),
|
|
114931
|
+
/* harmony export */ ViewHandleType: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewHandleType),
|
|
114932
|
+
/* harmony export */ ViewManager: () => (/* reexport safe */ _ViewManager__WEBPACK_IMPORTED_MODULE_62__.ViewManager),
|
|
114933
|
+
/* harmony export */ ViewManip: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewManip),
|
|
114934
|
+
/* harmony export */ ViewPose: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_65__.ViewPose),
|
|
114935
|
+
/* harmony export */ ViewPose2d: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_65__.ViewPose2d),
|
|
114936
|
+
/* harmony export */ ViewPose3d: () => (/* reexport safe */ _ViewPose__WEBPACK_IMPORTED_MODULE_65__.ViewPose3d),
|
|
114937
|
+
/* harmony export */ ViewRect: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.ViewRect),
|
|
114938
|
+
/* harmony export */ ViewRedoTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewRedoTool),
|
|
114939
|
+
/* harmony export */ ViewState: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_66__.ViewState),
|
|
114940
|
+
/* harmony export */ ViewState2d: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_66__.ViewState2d),
|
|
114941
|
+
/* harmony export */ ViewState3d: () => (/* reexport safe */ _ViewState__WEBPACK_IMPORTED_MODULE_66__.ViewState3d),
|
|
114942
|
+
/* harmony export */ ViewStatus: () => (/* reexport safe */ _ViewStatus__WEBPACK_IMPORTED_MODULE_67__.ViewStatus),
|
|
114943
|
+
/* harmony export */ ViewToggleCameraTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewToggleCameraTool),
|
|
114944
|
+
/* harmony export */ ViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewTool),
|
|
114945
|
+
/* harmony export */ ViewUndoEvent: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.ViewUndoEvent),
|
|
114946
|
+
/* harmony export */ ViewUndoTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewUndoTool),
|
|
114947
|
+
/* harmony export */ ViewingSpace: () => (/* reexport safe */ _ViewingSpace__WEBPACK_IMPORTED_MODULE_61__.ViewingSpace),
|
|
114948
|
+
/* harmony export */ ViewingToolHandle: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ViewingToolHandle),
|
|
114949
|
+
/* harmony export */ Viewport: () => (/* reexport safe */ _Viewport__WEBPACK_IMPORTED_MODULE_63__.Viewport),
|
|
114950
|
+
/* harmony export */ WalkViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.WalkViewTool),
|
|
114951
|
+
/* harmony export */ WebMercatorProjection: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.WebMercatorProjection),
|
|
114952
|
+
/* harmony export */ WebMercatorTilingScheme: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.WebMercatorTilingScheme),
|
|
114953
|
+
/* harmony export */ WheelEventProcessor: () => (/* reexport safe */ _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__.WheelEventProcessor),
|
|
114954
|
+
/* harmony export */ WindowAreaTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.WindowAreaTool),
|
|
114955
|
+
/* harmony export */ WmsUtilities: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.WmsUtilities),
|
|
114956
|
+
/* harmony export */ WorkerGraphicDescriptionContext: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.WorkerGraphicDescriptionContext),
|
|
114957
|
+
/* harmony export */ ZoomViewTool: () => (/* reexport safe */ _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__.ZoomViewTool),
|
|
114958
|
+
/* harmony export */ _callIpcChannel: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__._callIpcChannel),
|
|
114959
|
+
/* harmony export */ _implementationProhibited: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__._implementationProhibited),
|
|
114960
|
+
/* harmony export */ _scheduleScriptReference: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__._scheduleScriptReference),
|
|
114961
|
+
/* harmony export */ acquireImdlDecoder: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.acquireImdlDecoder),
|
|
114962
|
+
/* harmony export */ appendQueryParams: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.appendQueryParams),
|
|
114963
|
+
/* harmony export */ areaToEyeHeight: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.areaToEyeHeight),
|
|
114964
|
+
/* harmony export */ areaToEyeHeightFromGcs: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.areaToEyeHeightFromGcs),
|
|
114965
|
+
/* harmony export */ calculateEcefToDbTransformAtLocation: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__.calculateEcefToDbTransformAtLocation),
|
|
114966
|
+
/* harmony export */ canvasToImageBuffer: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.canvasToImageBuffer),
|
|
114967
|
+
/* harmony export */ canvasToResizedCanvasWithBars: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.canvasToResizedCanvasWithBars),
|
|
114968
|
+
/* harmony export */ collectMaskRefs: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.collectMaskRefs),
|
|
114969
|
+
/* harmony export */ connectViewportFrusta: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.connectViewportFrusta),
|
|
114970
|
+
/* harmony export */ connectViewportViews: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.connectViewportViews),
|
|
114971
|
+
/* harmony export */ connectViewports: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.connectViewports),
|
|
114972
|
+
/* harmony export */ createQuantityDescription: () => (/* reexport safe */ _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_72__.createQuantityDescription),
|
|
114973
|
+
/* harmony export */ createSpatialTileTreeReferences: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.createSpatialTileTreeReferences),
|
|
114974
|
+
/* harmony export */ createWorkerProxy: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.createWorkerProxy),
|
|
114975
|
+
/* harmony export */ deflateCoordinates: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.deflateCoordinates),
|
|
114976
|
+
/* harmony export */ extractImageSourceDimensions: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.extractImageSourceDimensions),
|
|
114977
|
+
/* harmony export */ eyeToCartographicOnGlobe: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.eyeToCartographicOnGlobe),
|
|
114978
|
+
/* harmony export */ eyeToCartographicOnGlobeFromGcs: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.eyeToCartographicOnGlobeFromGcs),
|
|
114979
|
+
/* harmony export */ formatAnimationBranchId: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__.formatAnimationBranchId),
|
|
114980
|
+
/* harmony export */ getCenteredViewRect: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getCenteredViewRect),
|
|
114981
|
+
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.getCesiumAssetUrl),
|
|
114982
|
+
/* harmony export */ getCompressedJpegFromCanvas: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getCompressedJpegFromCanvas),
|
|
114983
|
+
/* harmony export */ getFrustumPlaneIntersectionDepthRange: () => (/* reexport safe */ _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__.getFrustumPlaneIntersectionDepthRange),
|
|
114984
|
+
/* harmony export */ getGoogle3dTilesUrl: () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__.getGoogle3dTilesUrl),
|
|
114985
|
+
/* harmony export */ getHeightAverage: () => (/* reexport safe */ _GeoProviders__WEBPACK_IMPORTED_MODULE_5__.getHeightAverage),
|
|
114986
|
+
/* harmony export */ getHeightRange: () => (/* reexport safe */ _GeoProviders__WEBPACK_IMPORTED_MODULE_5__.getHeightRange),
|
|
114987
|
+
/* harmony export */ getImageSourceFormatForMimeType: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getImageSourceFormatForMimeType),
|
|
114988
|
+
/* harmony export */ getImageSourceMimeType: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.getImageSourceMimeType),
|
|
114989
|
+
/* harmony export */ getQuantityTypeKey: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.getQuantityTypeKey),
|
|
114990
|
+
/* harmony export */ headersIncludeAuthMethod: () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_122__.headersIncludeAuthMethod),
|
|
114991
|
+
/* harmony export */ imageBitmapFromImageSource: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBitmapFromImageSource),
|
|
114992
|
+
/* harmony export */ imageBufferToBase64EncodedPng: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBufferToBase64EncodedPng),
|
|
114993
|
+
/* harmony export */ imageBufferToCanvas: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBufferToCanvas),
|
|
114994
|
+
/* harmony export */ imageBufferToPngDataUrl: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageBufferToPngDataUrl),
|
|
114995
|
+
/* harmony export */ imageElementFromImageSource: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageElementFromImageSource),
|
|
114996
|
+
/* harmony export */ imageElementFromUrl: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.imageElementFromUrl),
|
|
114997
|
+
/* harmony export */ isCheckboxFormatPropEditorSpec: () => (/* reexport safe */ _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__.isCheckboxFormatPropEditorSpec),
|
|
114998
|
+
/* harmony export */ isCustomQuantityTypeDefinition: () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__.isCustomQuantityTypeDefinition),
|
|
114999
|
+
/* harmony export */ isTextInputFormatPropEditorSpec: () => (/* reexport safe */ _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__.isTextInputFormatPropEditorSpec),
|
|
115000
|
+
/* harmony export */ isTextSelectFormatPropEditorSpec: () => (/* reexport safe */ _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__.isTextSelectFormatPropEditorSpec),
|
|
115001
|
+
/* harmony export */ linePlaneIntersect: () => (/* reexport safe */ _LinePlaneIntersect__WEBPACK_IMPORTED_MODULE_37__.linePlaneIntersect),
|
|
115002
|
+
/* harmony export */ metersToRange: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.metersToRange),
|
|
115003
|
+
/* harmony export */ openImageDataUrlInNewWindow: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.openImageDataUrlInNewWindow),
|
|
115004
|
+
/* harmony export */ queryTerrainElevationOffset: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.queryTerrainElevationOffset),
|
|
115005
|
+
/* harmony export */ rangeToCartographicArea: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.rangeToCartographicArea),
|
|
115006
|
+
/* harmony export */ readElementGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readElementGraphics),
|
|
115007
|
+
/* harmony export */ readGltf: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readGltf),
|
|
115008
|
+
/* harmony export */ readGltfGraphics: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readGltfGraphics),
|
|
115009
|
+
/* harmony export */ readGltfTemplate: () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_101__.readGltfTemplate),
|
|
115010
|
+
/* harmony export */ registerWorker: () => (/* reexport safe */ _workers_RegisterWorker__WEBPACK_IMPORTED_MODULE_117__.registerWorker),
|
|
115011
|
+
/* harmony export */ setBasicAuthorization: () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_122__.setBasicAuthorization),
|
|
115012
|
+
/* harmony export */ setRequestTimeout: () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_122__.setRequestTimeout),
|
|
115013
|
+
/* harmony export */ synchronizeViewportFrusta: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.synchronizeViewportFrusta),
|
|
115014
|
+
/* harmony export */ synchronizeViewportViews: () => (/* reexport safe */ _ViewportSync__WEBPACK_IMPORTED_MODULE_64__.synchronizeViewportViews),
|
|
115015
|
+
/* harmony export */ tryImageElementFromUrl: () => (/* reexport safe */ _common__WEBPACK_IMPORTED_MODULE_12__.tryImageElementFromUrl),
|
|
115016
|
+
/* harmony export */ viewGlobalLocation: () => (/* reexport safe */ _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__.viewGlobalLocation)
|
|
114877
115017
|
/* harmony export */ });
|
|
114878
115018
|
/* harmony import */ var _AccuDraw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccuDraw */ "../../core/frontend/lib/esm/AccuDraw.js");
|
|
114879
115019
|
/* harmony import */ var _AccuSnap__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AccuSnap */ "../../core/frontend/lib/esm/AccuSnap.js");
|
|
114880
115020
|
/* harmony import */ var _AuxCoordSys__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AuxCoordSys */ "../../core/frontend/lib/esm/AuxCoordSys.js");
|
|
114881
115021
|
/* harmony import */ var _BingLocation__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./BingLocation */ "../../core/frontend/lib/esm/BingLocation.js");
|
|
114882
115022
|
/* harmony import */ var _BriefcaseConnection__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./BriefcaseConnection */ "../../core/frontend/lib/esm/BriefcaseConnection.js");
|
|
114883
|
-
/* harmony import */ var
|
|
114884
|
-
/* harmony import */ var
|
|
114885
|
-
/* harmony import */ var
|
|
114886
|
-
/* harmony import */ var
|
|
114887
|
-
/* harmony import */ var
|
|
114888
|
-
/* harmony import */ var
|
|
114889
|
-
/* harmony import */ var
|
|
114890
|
-
/* harmony import */ var
|
|
114891
|
-
/* harmony import */ var
|
|
114892
|
-
/* harmony import */ var
|
|
114893
|
-
/* harmony import */ var
|
|
114894
|
-
/* harmony import */ var
|
|
114895
|
-
/* harmony import */ var
|
|
114896
|
-
/* harmony import */ var
|
|
114897
|
-
/* harmony import */ var
|
|
114898
|
-
/* harmony import */ var
|
|
114899
|
-
/* harmony import */ var
|
|
114900
|
-
/* harmony import */ var
|
|
114901
|
-
/* harmony import */ var
|
|
114902
|
-
/* harmony import */ var
|
|
114903
|
-
/* harmony import */ var
|
|
114904
|
-
/* harmony import */ var
|
|
114905
|
-
/* harmony import */ var
|
|
114906
|
-
/* harmony import */ var
|
|
114907
|
-
/* harmony import */ var
|
|
114908
|
-
/* harmony import */ var
|
|
114909
|
-
/* harmony import */ var
|
|
114910
|
-
/* harmony import */ var
|
|
114911
|
-
/* harmony import */ var
|
|
114912
|
-
/* harmony import */ var
|
|
114913
|
-
/* harmony import */ var
|
|
114914
|
-
/* harmony import */ var
|
|
114915
|
-
/* harmony import */ var
|
|
114916
|
-
/* harmony import */ var
|
|
114917
|
-
/* harmony import */ var
|
|
114918
|
-
/* harmony import */ var
|
|
114919
|
-
/* harmony import */ var
|
|
114920
|
-
/* harmony import */ var
|
|
114921
|
-
/* harmony import */ var
|
|
114922
|
-
/* harmony import */ var
|
|
114923
|
-
/* harmony import */ var
|
|
114924
|
-
/* harmony import */ var
|
|
114925
|
-
/* harmony import */ var
|
|
114926
|
-
/* harmony import */ var
|
|
114927
|
-
/* harmony import */ var
|
|
114928
|
-
/* harmony import */ var
|
|
114929
|
-
/* harmony import */ var
|
|
114930
|
-
/* harmony import */ var
|
|
114931
|
-
/* harmony import */ var
|
|
114932
|
-
/* harmony import */ var
|
|
114933
|
-
/* harmony import */ var
|
|
114934
|
-
/* harmony import */ var
|
|
114935
|
-
/* harmony import */ var
|
|
114936
|
-
/* harmony import */ var
|
|
114937
|
-
/* harmony import */ var
|
|
114938
|
-
/* harmony import */ var
|
|
114939
|
-
/* harmony import */ var
|
|
114940
|
-
/* harmony import */ var
|
|
114941
|
-
/* harmony import */ var
|
|
114942
|
-
/* harmony import */ var
|
|
114943
|
-
/* harmony import */ var
|
|
114944
|
-
/* harmony import */ var
|
|
114945
|
-
/* harmony import */ var
|
|
114946
|
-
/* harmony import */ var
|
|
114947
|
-
/* harmony import */ var
|
|
114948
|
-
/* harmony import */ var
|
|
114949
|
-
/* harmony import */ var
|
|
114950
|
-
/* harmony import */ var
|
|
114951
|
-
/* harmony import */ var
|
|
114952
|
-
/* harmony import */ var
|
|
114953
|
-
/* harmony import */ var
|
|
114954
|
-
/* harmony import */ var
|
|
114955
|
-
/* harmony import */ var
|
|
114956
|
-
/* harmony import */ var
|
|
114957
|
-
/* harmony import */ var
|
|
114958
|
-
/* harmony import */ var
|
|
114959
|
-
/* harmony import */ var
|
|
114960
|
-
/* harmony import */ var
|
|
114961
|
-
/* harmony import */ var
|
|
114962
|
-
/* harmony import */ var
|
|
114963
|
-
/* harmony import */ var
|
|
114964
|
-
/* harmony import */ var
|
|
114965
|
-
/* harmony import */ var
|
|
114966
|
-
/* harmony import */ var
|
|
114967
|
-
/* harmony import */ var
|
|
114968
|
-
/* harmony import */ var
|
|
114969
|
-
/* harmony import */ var
|
|
114970
|
-
/* harmony import */ var
|
|
114971
|
-
/* harmony import */ var
|
|
114972
|
-
/* harmony import */ var
|
|
114973
|
-
/* harmony import */ var
|
|
114974
|
-
/* harmony import */ var
|
|
114975
|
-
/* harmony import */ var
|
|
114976
|
-
/* harmony import */ var
|
|
114977
|
-
/* harmony import */ var
|
|
114978
|
-
/* harmony import */ var
|
|
114979
|
-
/* harmony import */ var
|
|
114980
|
-
/* harmony import */ var
|
|
114981
|
-
/* harmony import */ var
|
|
114982
|
-
/* harmony import */ var
|
|
114983
|
-
/* harmony import */ var
|
|
114984
|
-
/* harmony import */ var
|
|
114985
|
-
/* harmony import */ var
|
|
114986
|
-
/* harmony import */ var
|
|
114987
|
-
/* harmony import */ var
|
|
114988
|
-
/* harmony import */ var
|
|
114989
|
-
/* harmony import */ var
|
|
114990
|
-
/* harmony import */ var
|
|
114991
|
-
/* harmony import */ var
|
|
114992
|
-
/* harmony import */ var
|
|
114993
|
-
/* harmony import */ var
|
|
114994
|
-
/* harmony import */ var
|
|
114995
|
-
/* harmony import */ var
|
|
114996
|
-
/* harmony import */ var
|
|
114997
|
-
/* harmony import */ var
|
|
114998
|
-
/* harmony import */ var
|
|
114999
|
-
/* harmony import */ var
|
|
115000
|
-
/* harmony import */ var
|
|
115001
|
-
/* harmony import */ var
|
|
115023
|
+
/* harmony import */ var _GeoProviders__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./GeoProviders */ "../../core/frontend/lib/esm/GeoProviders.js");
|
|
115024
|
+
/* harmony import */ var _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BriefcaseTxns */ "../../core/frontend/lib/esm/BriefcaseTxns.js");
|
|
115025
|
+
/* harmony import */ var _CatalogConnection__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./CatalogConnection */ "../../core/frontend/lib/esm/CatalogConnection.js");
|
|
115026
|
+
/* harmony import */ var _CategorySelectorState__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./CategorySelectorState */ "../../core/frontend/lib/esm/CategorySelectorState.js");
|
|
115027
|
+
/* harmony import */ var _CesiumAccessClient__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./CesiumAccessClient */ "../../core/frontend/lib/esm/CesiumAccessClient.js");
|
|
115028
|
+
/* harmony import */ var _ChangeFlags__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ChangeFlags */ "../../core/frontend/lib/esm/ChangeFlags.js");
|
|
115029
|
+
/* harmony import */ var _CheckpointConnection__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./CheckpointConnection */ "../../core/frontend/lib/esm/CheckpointConnection.js");
|
|
115030
|
+
/* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./common */ "../../core/frontend/lib/esm/common.js");
|
|
115031
|
+
/* harmony import */ var _ContextRealityModelState__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./ContextRealityModelState */ "../../core/frontend/lib/esm/ContextRealityModelState.js");
|
|
115032
|
+
/* harmony import */ var _CoordSystem__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./CoordSystem */ "../../core/frontend/lib/esm/CoordSystem.js");
|
|
115033
|
+
/* harmony import */ var _DecorationsCache__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./DecorationsCache */ "../../core/frontend/lib/esm/DecorationsCache.js");
|
|
115034
|
+
/* harmony import */ var _DevTools__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./DevTools */ "../../core/frontend/lib/esm/DevTools.js");
|
|
115035
|
+
/* harmony import */ var _DisplayStyleState__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./DisplayStyleState */ "../../core/frontend/lib/esm/DisplayStyleState.js");
|
|
115036
|
+
/* harmony import */ var _DrawingViewState__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./DrawingViewState */ "../../core/frontend/lib/esm/DrawingViewState.js");
|
|
115037
|
+
/* harmony import */ var _ElementLocateManager__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./ElementLocateManager */ "../../core/frontend/lib/esm/ElementLocateManager.js");
|
|
115038
|
+
/* harmony import */ var _EmphasizeElements__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./EmphasizeElements */ "../../core/frontend/lib/esm/EmphasizeElements.js");
|
|
115039
|
+
/* harmony import */ var _EntityState__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./EntityState */ "../../core/frontend/lib/esm/EntityState.js");
|
|
115040
|
+
/* harmony import */ var _EnvironmentDecorations__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./EnvironmentDecorations */ "../../core/frontend/lib/esm/EnvironmentDecorations.js");
|
|
115041
|
+
/* harmony import */ var _FeatureOverrideProvider__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./FeatureOverrideProvider */ "../../core/frontend/lib/esm/FeatureOverrideProvider.js");
|
|
115042
|
+
/* harmony import */ var _FlashSettings__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./FlashSettings */ "../../core/frontend/lib/esm/FlashSettings.js");
|
|
115043
|
+
/* harmony import */ var _FrontendHubAccess__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./FrontendHubAccess */ "../../core/frontend/lib/esm/FrontendHubAccess.js");
|
|
115044
|
+
/* harmony import */ var _Frustum2d__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./Frustum2d */ "../../core/frontend/lib/esm/Frustum2d.js");
|
|
115045
|
+
/* harmony import */ var _FrustumAnimator__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./FrustumAnimator */ "../../core/frontend/lib/esm/FrustumAnimator.js");
|
|
115046
|
+
/* harmony import */ var _FuzzySearch__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./FuzzySearch */ "../../core/frontend/lib/esm/FuzzySearch.js");
|
|
115047
|
+
/* harmony import */ var _GeoServices__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./GeoServices */ "../../core/frontend/lib/esm/GeoServices.js");
|
|
115048
|
+
/* harmony import */ var _GlobeAnimator__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./GlobeAnimator */ "../../core/frontend/lib/esm/GlobeAnimator.js");
|
|
115049
|
+
/* harmony import */ var _GraphicalEditingScope__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./GraphicalEditingScope */ "../../core/frontend/lib/esm/GraphicalEditingScope.js");
|
|
115050
|
+
/* harmony import */ var _HitDetail__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./HitDetail */ "../../core/frontend/lib/esm/HitDetail.js");
|
|
115051
|
+
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
115052
|
+
/* harmony import */ var _IModelConnection__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./IModelConnection */ "../../core/frontend/lib/esm/IModelConnection.js");
|
|
115053
|
+
/* harmony import */ var _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./IModelRoutingContext */ "../../core/frontend/lib/esm/IModelRoutingContext.js");
|
|
115054
|
+
/* harmony import */ var _IpcApp__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./IpcApp */ "../../core/frontend/lib/esm/IpcApp.js");
|
|
115055
|
+
/* harmony import */ var _LinePlaneIntersect__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./LinePlaneIntersect */ "../../core/frontend/lib/esm/LinePlaneIntersect.js");
|
|
115056
|
+
/* harmony import */ var _MarginPercent__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./MarginPercent */ "../../core/frontend/lib/esm/MarginPercent.js");
|
|
115057
|
+
/* harmony import */ var _Marker__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./Marker */ "../../core/frontend/lib/esm/Marker.js");
|
|
115058
|
+
/* harmony import */ var _ModelSelectorState__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./ModelSelectorState */ "../../core/frontend/lib/esm/ModelSelectorState.js");
|
|
115059
|
+
/* harmony import */ var _ModelState__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./ModelState */ "../../core/frontend/lib/esm/ModelState.js");
|
|
115060
|
+
/* harmony import */ var _NativeApp__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./NativeApp */ "../../core/frontend/lib/esm/NativeApp.js");
|
|
115061
|
+
/* harmony import */ var _NativeAppLogger__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./NativeAppLogger */ "../../core/frontend/lib/esm/NativeAppLogger.js");
|
|
115062
|
+
/* harmony import */ var _NoRenderApp__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./NoRenderApp */ "../../core/frontend/lib/esm/NoRenderApp.js");
|
|
115063
|
+
/* harmony import */ var _NotificationManager__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./NotificationManager */ "../../core/frontend/lib/esm/NotificationManager.js");
|
|
115064
|
+
/* harmony import */ var _PerModelCategoryVisibility__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./PerModelCategoryVisibility */ "../../core/frontend/lib/esm/PerModelCategoryVisibility.js");
|
|
115065
|
+
/* harmony import */ var _PlanarClipMaskState__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./PlanarClipMaskState */ "../../core/frontend/lib/esm/PlanarClipMaskState.js");
|
|
115066
|
+
/* harmony import */ var _SelectionSet__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./SelectionSet */ "../../core/frontend/lib/esm/SelectionSet.js");
|
|
115067
|
+
/* harmony import */ var _SheetViewState__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./SheetViewState */ "../../core/frontend/lib/esm/SheetViewState.js");
|
|
115068
|
+
/* harmony import */ var _SpatialClassifiersState__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./SpatialClassifiersState */ "../../core/frontend/lib/esm/SpatialClassifiersState.js");
|
|
115069
|
+
/* harmony import */ var _SpatialViewState__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./SpatialViewState */ "../../core/frontend/lib/esm/SpatialViewState.js");
|
|
115070
|
+
/* harmony import */ var _Sprites__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./Sprites */ "../../core/frontend/lib/esm/Sprites.js");
|
|
115071
|
+
/* harmony import */ var _StandardView__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./StandardView */ "../../core/frontend/lib/esm/StandardView.js");
|
|
115072
|
+
/* harmony import */ var _SubCategoriesCache__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./SubCategoriesCache */ "../../core/frontend/lib/esm/SubCategoriesCache.js");
|
|
115073
|
+
/* harmony import */ var _TentativePoint__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./TentativePoint */ "../../core/frontend/lib/esm/TentativePoint.js");
|
|
115074
|
+
/* harmony import */ var _Tiles__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./Tiles */ "../../core/frontend/lib/esm/Tiles.js");
|
|
115075
|
+
/* harmony import */ var _UserPreferences__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./UserPreferences */ "../../core/frontend/lib/esm/UserPreferences.js");
|
|
115076
|
+
/* harmony import */ var _ViewAnimation__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./ViewAnimation */ "../../core/frontend/lib/esm/ViewAnimation.js");
|
|
115077
|
+
/* harmony import */ var _ViewContext__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./ViewContext */ "../../core/frontend/lib/esm/ViewContext.js");
|
|
115078
|
+
/* harmony import */ var _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./ViewGlobalLocation */ "../../core/frontend/lib/esm/ViewGlobalLocation.js");
|
|
115079
|
+
/* harmony import */ var _ViewingSpace__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./ViewingSpace */ "../../core/frontend/lib/esm/ViewingSpace.js");
|
|
115080
|
+
/* harmony import */ var _ViewManager__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./ViewManager */ "../../core/frontend/lib/esm/ViewManager.js");
|
|
115081
|
+
/* harmony import */ var _Viewport__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./Viewport */ "../../core/frontend/lib/esm/Viewport.js");
|
|
115082
|
+
/* harmony import */ var _ViewportSync__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ViewportSync */ "../../core/frontend/lib/esm/ViewportSync.js");
|
|
115083
|
+
/* harmony import */ var _ViewPose__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ViewPose */ "../../core/frontend/lib/esm/ViewPose.js");
|
|
115084
|
+
/* harmony import */ var _ViewState__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ViewState */ "../../core/frontend/lib/esm/ViewState.js");
|
|
115085
|
+
/* harmony import */ var _ViewStatus__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ViewStatus */ "../../core/frontend/lib/esm/ViewStatus.js");
|
|
115086
|
+
/* harmony import */ var _extension_Extension__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./extension/Extension */ "../../core/frontend/lib/esm/extension/Extension.js");
|
|
115087
|
+
/* harmony import */ var _extension_providers_LocalExtensionProvider__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./extension/providers/LocalExtensionProvider */ "../../core/frontend/lib/esm/extension/providers/LocalExtensionProvider.js");
|
|
115088
|
+
/* harmony import */ var _extension_providers_RemoteExtensionProvider__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./extension/providers/RemoteExtensionProvider */ "../../core/frontend/lib/esm/extension/providers/RemoteExtensionProvider.js");
|
|
115089
|
+
/* harmony import */ var _properties_AngleDescription__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./properties/AngleDescription */ "../../core/frontend/lib/esm/properties/AngleDescription.js");
|
|
115090
|
+
/* harmony import */ var _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./properties/FormattedQuantityDescription */ "../../core/frontend/lib/esm/properties/FormattedQuantityDescription.js");
|
|
115091
|
+
/* harmony import */ var _properties_LengthDescription__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./properties/LengthDescription */ "../../core/frontend/lib/esm/properties/LengthDescription.js");
|
|
115092
|
+
/* harmony import */ var _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./quantity-formatting/QuantityFormatter */ "../../core/frontend/lib/esm/quantity-formatting/QuantityFormatter.js");
|
|
115093
|
+
/* harmony import */ var _quantity_formatting_BaseUnitFormattingSettingsProvider__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./quantity-formatting/BaseUnitFormattingSettingsProvider */ "../../core/frontend/lib/esm/quantity-formatting/BaseUnitFormattingSettingsProvider.js");
|
|
115094
|
+
/* harmony import */ var _quantity_formatting_LocalUnitFormatProvider__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./quantity-formatting/LocalUnitFormatProvider */ "../../core/frontend/lib/esm/quantity-formatting/LocalUnitFormatProvider.js");
|
|
115095
|
+
/* harmony import */ var _quantity_formatting_QuantityTypesEditorSpecs__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./quantity-formatting/QuantityTypesEditorSpecs */ "../../core/frontend/lib/esm/quantity-formatting/QuantityTypesEditorSpecs.js");
|
|
115096
|
+
/* harmony import */ var _render_CanvasDecoration__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./render/CanvasDecoration */ "../../core/frontend/lib/esm/render/CanvasDecoration.js");
|
|
115097
|
+
/* harmony import */ var _render_CreateRenderMaterialArgs__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./render/CreateRenderMaterialArgs */ "../../core/frontend/lib/esm/render/CreateRenderMaterialArgs.js");
|
|
115098
|
+
/* harmony import */ var _render_CreateTextureArgs__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./render/CreateTextureArgs */ "../../core/frontend/lib/esm/render/CreateTextureArgs.js");
|
|
115099
|
+
/* harmony import */ var _render_Decorations__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./render/Decorations */ "../../core/frontend/lib/esm/render/Decorations.js");
|
|
115100
|
+
/* harmony import */ var _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./render/FeatureSymbology */ "../../core/frontend/lib/esm/render/FeatureSymbology.js");
|
|
115101
|
+
/* harmony import */ var _render_FrameStats__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./render/FrameStats */ "../../core/frontend/lib/esm/render/FrameStats.js");
|
|
115102
|
+
/* harmony import */ var _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./render/GraphicBranch */ "../../core/frontend/lib/esm/render/GraphicBranch.js");
|
|
115103
|
+
/* harmony import */ var _render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./render/GraphicBuilder */ "../../core/frontend/lib/esm/render/GraphicBuilder.js");
|
|
115104
|
+
/* harmony import */ var _render_GraphicTemplate__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./render/GraphicTemplate */ "../../core/frontend/lib/esm/render/GraphicTemplate.js");
|
|
115105
|
+
/* harmony import */ var _render_MeshArgs__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./render/MeshArgs */ "../../core/frontend/lib/esm/render/MeshArgs.js");
|
|
115106
|
+
/* harmony import */ var _render_ParticleCollectionBuilder__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./render/ParticleCollectionBuilder */ "../../core/frontend/lib/esm/render/ParticleCollectionBuilder.js");
|
|
115107
|
+
/* harmony import */ var _render_Pixel__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./render/Pixel */ "../../core/frontend/lib/esm/render/Pixel.js");
|
|
115108
|
+
/* harmony import */ var _render_PolylineArgs__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./render/PolylineArgs */ "../../core/frontend/lib/esm/render/PolylineArgs.js");
|
|
115109
|
+
/* harmony import */ var _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./render/RealityMeshParams */ "../../core/frontend/lib/esm/render/RealityMeshParams.js");
|
|
115110
|
+
/* harmony import */ var _render_RenderClipVolume__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./render/RenderClipVolume */ "../../core/frontend/lib/esm/render/RenderClipVolume.js");
|
|
115111
|
+
/* harmony import */ var _render_RenderGraphic__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./render/RenderGraphic */ "../../core/frontend/lib/esm/render/RenderGraphic.js");
|
|
115112
|
+
/* harmony import */ var _render_RenderMemory__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./render/RenderMemory */ "../../core/frontend/lib/esm/render/RenderMemory.js");
|
|
115113
|
+
/* harmony import */ var _render_RenderSystem__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./render/RenderSystem */ "../../core/frontend/lib/esm/render/RenderSystem.js");
|
|
115114
|
+
/* harmony import */ var _render_RenderTarget__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./render/RenderTarget */ "../../core/frontend/lib/esm/render/RenderTarget.js");
|
|
115115
|
+
/* harmony import */ var _render_Scene__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./render/Scene */ "../../core/frontend/lib/esm/render/Scene.js");
|
|
115116
|
+
/* harmony import */ var _render_ScreenSpaceEffectBuilder__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./render/ScreenSpaceEffectBuilder */ "../../core/frontend/lib/esm/render/ScreenSpaceEffectBuilder.js");
|
|
115117
|
+
/* harmony import */ var _render_VisibleFeature__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./render/VisibleFeature */ "../../core/frontend/lib/esm/render/VisibleFeature.js");
|
|
115118
|
+
/* harmony import */ var _internal_render_webgl_IModelFrameLifecycle__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./internal/render/webgl/IModelFrameLifecycle */ "../../core/frontend/lib/esm/internal/render/webgl/IModelFrameLifecycle.js");
|
|
115119
|
+
/* harmony import */ var _tile_internal__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./tile/internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
115120
|
+
/* harmony import */ var _tools_AccuDrawTool__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./tools/AccuDrawTool */ "../../core/frontend/lib/esm/tools/AccuDrawTool.js");
|
|
115121
|
+
/* harmony import */ var _tools_AccuDrawViewportUI__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./tools/AccuDrawViewportUI */ "../../core/frontend/lib/esm/tools/AccuDrawViewportUI.js");
|
|
115122
|
+
/* harmony import */ var _tools_ClipViewTool__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./tools/ClipViewTool */ "../../core/frontend/lib/esm/tools/ClipViewTool.js");
|
|
115123
|
+
/* harmony import */ var _tools_EditManipulator__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./tools/EditManipulator */ "../../core/frontend/lib/esm/tools/EditManipulator.js");
|
|
115124
|
+
/* harmony import */ var _tools_ElementSetTool__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./tools/ElementSetTool */ "../../core/frontend/lib/esm/tools/ElementSetTool.js");
|
|
115125
|
+
/* harmony import */ var _tools_EventController__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./tools/EventController */ "../../core/frontend/lib/esm/tools/EventController.js");
|
|
115126
|
+
/* harmony import */ var _tools_IdleTool__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./tools/IdleTool */ "../../core/frontend/lib/esm/tools/IdleTool.js");
|
|
115127
|
+
/* harmony import */ var _tools_MeasureTool__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./tools/MeasureTool */ "../../core/frontend/lib/esm/tools/MeasureTool.js");
|
|
115128
|
+
/* harmony import */ var _tools_PrimitiveTool__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./tools/PrimitiveTool */ "../../core/frontend/lib/esm/tools/PrimitiveTool.js");
|
|
115129
|
+
/* harmony import */ var _tools_SelectTool__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./tools/SelectTool */ "../../core/frontend/lib/esm/tools/SelectTool.js");
|
|
115130
|
+
/* harmony import */ var _tools_Tool__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./tools/Tool */ "../../core/frontend/lib/esm/tools/Tool.js");
|
|
115131
|
+
/* harmony import */ var _tools_ToolSettings__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./tools/ToolSettings */ "../../core/frontend/lib/esm/tools/ToolSettings.js");
|
|
115132
|
+
/* harmony import */ var _tools_ToolAdmin__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./tools/ToolAdmin */ "../../core/frontend/lib/esm/tools/ToolAdmin.js");
|
|
115133
|
+
/* harmony import */ var _tools_ToolAssistance__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./tools/ToolAssistance */ "../../core/frontend/lib/esm/tools/ToolAssistance.js");
|
|
115134
|
+
/* harmony import */ var _tools_ViewTool__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./tools/ViewTool */ "../../core/frontend/lib/esm/tools/ViewTool.js");
|
|
115135
|
+
/* harmony import */ var _workers_RegisterWorker__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./workers/RegisterWorker */ "../../core/frontend/lib/esm/workers/RegisterWorker.js");
|
|
115136
|
+
/* harmony import */ var _BackgroundMapGeometry__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./BackgroundMapGeometry */ "../../core/frontend/lib/esm/BackgroundMapGeometry.js");
|
|
115137
|
+
/* harmony import */ var _ViewCreator2d__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./ViewCreator2d */ "../../core/frontend/lib/esm/ViewCreator2d.js");
|
|
115138
|
+
/* harmony import */ var _ViewCreator3d__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./ViewCreator3d */ "../../core/frontend/lib/esm/ViewCreator3d.js");
|
|
115139
|
+
/* harmony import */ var _LocalhostIpcApp__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./LocalhostIpcApp */ "../../core/frontend/lib/esm/LocalhostIpcApp.js");
|
|
115140
|
+
/* harmony import */ var _request_utils__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./request/utils */ "../../core/frontend/lib/esm/request/utils.js");
|
|
115141
|
+
/* harmony import */ var _RealityDataSource__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./RealityDataSource */ "../../core/frontend/lib/esm/RealityDataSource.js");
|
|
115142
|
+
/* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./internal/cross-package */ "../../core/frontend/lib/esm/internal/cross-package.js");
|
|
115143
|
+
/* harmony import */ var _extension_ExtensionRuntime__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./extension/ExtensionRuntime */ "../../core/frontend/lib/esm/extension/ExtensionRuntime.js");
|
|
115002
115144
|
/*---------------------------------------------------------------------------------------------
|
|
115003
115145
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
115004
115146
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -115123,6 +115265,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
115123
115265
|
|
|
115124
115266
|
|
|
115125
115267
|
|
|
115268
|
+
|
|
115269
|
+
|
|
115126
115270
|
|
|
115127
115271
|
|
|
115128
115272
|
|
|
@@ -154513,6 +154657,7 @@ class RealityModelTileProps {
|
|
|
154513
154657
|
rangeCorners;
|
|
154514
154658
|
region;
|
|
154515
154659
|
geometricError;
|
|
154660
|
+
contentUrl;
|
|
154516
154661
|
constructor(args) {
|
|
154517
154662
|
this.contentId = args.id;
|
|
154518
154663
|
this.parent = args.parent;
|
|
@@ -154530,9 +154675,12 @@ class RealityModelTileProps {
|
|
|
154530
154675
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(false, "Unbounded tile");
|
|
154531
154676
|
}
|
|
154532
154677
|
this.isLeaf = !Array.isArray(json.children) || 0 === json.children.length;
|
|
154533
|
-
const
|
|
154534
|
-
|
|
154678
|
+
const contentUrl = getUrl(json.content);
|
|
154679
|
+
const hasContents = undefined !== contentUrl;
|
|
154680
|
+
if (hasContents) {
|
|
154681
|
+
this.contentUrl = contentUrl;
|
|
154535
154682
|
this.contentRange = RealityModelTileUtils.rangeFromBoundingVolume(json.content.boundingVolume)?.range;
|
|
154683
|
+
}
|
|
154536
154684
|
else {
|
|
154537
154685
|
// A node without content should probably be selectable even if not additive refinement - But restrict it to that case here
|
|
154538
154686
|
// to avoid potential problems with existing reality models, but still avoid overselection in the OSM world building set.
|
|
@@ -155182,8 +155330,57 @@ class RealityTileLoader {
|
|
|
155182
155330
|
streamBuffer.curPos = position;
|
|
155183
155331
|
return format;
|
|
155184
155332
|
}
|
|
155333
|
+
/** Reality tile content is identified by the first 4 bytes of the stream. Binary formats (b3dm, glb, pnts, etc.) use a
|
|
155334
|
+
* recognizable magic number, but a tileset may also reference glTF content as a plain-text JSON `.gltf` file, which
|
|
155335
|
+
* begins with a `{` character instead of a magic number and therefore matches no known format.
|
|
155336
|
+
* JSON content is identified the same way the rest of the reality tile pipeline identifies content types: by the
|
|
155337
|
+
* content URL's extension (see `expandSubTree` in RealityModelTileTree.ts, which uses `RealityDataSource.getTileContentType`
|
|
155338
|
+
* to peel off external `tileset.json` content during tree construction), rather than by sniffing the bytes.
|
|
155339
|
+
* A `.gltf` content URL is normalized to [[TileFormat.Gltf]] so it is routed to the glTF reader, which accepts both
|
|
155340
|
+
* binary and JSON glTF. (External `tileset.json` content is resolved by `expandSubTree` before it reaches this point.)
|
|
155341
|
+
*/
|
|
155342
|
+
_normalizeFormat(format, tile) {
|
|
155343
|
+
if ((0,_itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.isKnownTileFormat)(format))
|
|
155344
|
+
return format;
|
|
155345
|
+
if (this._hasGltfExtension(tile.contentUrl))
|
|
155346
|
+
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TileFormat.Gltf;
|
|
155347
|
+
return format;
|
|
155348
|
+
}
|
|
155349
|
+
/** Returns whether the given content URL identifies a JSON glTF (`.gltf`) resource, ignoring any query string or
|
|
155350
|
+
* fragment (e.g. `8/130/85.gltf?token=abc`).
|
|
155351
|
+
*/
|
|
155352
|
+
_hasGltfExtension(contentUrl) {
|
|
155353
|
+
if (undefined === contentUrl)
|
|
155354
|
+
return false;
|
|
155355
|
+
const path = contentUrl.split(/[?#]/, 1)[0];
|
|
155356
|
+
return path.toLowerCase().endsWith(".gltf");
|
|
155357
|
+
}
|
|
155358
|
+
/** The base URL the glTF reader should resolve relatively-referenced resources (e.g. external images) against.
|
|
155359
|
+
* Prefer the tile's own content URL so that images referenced relative to the content (typical of JSON `.gltf` tiles)
|
|
155360
|
+
* resolve correctly, rather than against the tileset root. The tileset's query/authentication parameters (e.g.
|
|
155361
|
+
* `?sig=abc`) are preserved on the returned URL: the data source appends them to every tile request, and the glTF
|
|
155362
|
+
* reader re-applies the base URL's query string to each relatively-referenced resource (see `GltfReader.resolveUrl`),
|
|
155363
|
+
* so external resources must be fetched with the same parameters.
|
|
155364
|
+
*/
|
|
155365
|
+
_getReaderBaseUrl(tile) {
|
|
155366
|
+
const treeBaseUrl = tile.tree.baseUrl;
|
|
155367
|
+
if (undefined !== tile.contentUrl) {
|
|
155368
|
+
if (undefined === treeBaseUrl)
|
|
155369
|
+
return tile.contentUrl;
|
|
155370
|
+
try {
|
|
155371
|
+
const resolved = new URL(tile.contentUrl, treeBaseUrl);
|
|
155372
|
+
if ("" === resolved.search)
|
|
155373
|
+
resolved.search = new URL(treeBaseUrl).search;
|
|
155374
|
+
return resolved.toString();
|
|
155375
|
+
}
|
|
155376
|
+
catch {
|
|
155377
|
+
// treeBaseUrl is not a valid absolute base against which to resolve contentUrl; fall back to the tree base URL.
|
|
155378
|
+
}
|
|
155379
|
+
}
|
|
155380
|
+
return treeBaseUrl;
|
|
155381
|
+
}
|
|
155185
155382
|
async loadGeometryFromStream(tile, streamBuffer, system) {
|
|
155186
|
-
const format = this._getFormat(streamBuffer);
|
|
155383
|
+
const format = this._normalizeFormat(this._getFormat(streamBuffer), tile);
|
|
155187
155384
|
if (format !== _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TileFormat.B3dm && format !== _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TileFormat.Gltf) {
|
|
155188
155385
|
return {};
|
|
155189
155386
|
}
|
|
@@ -155196,7 +155393,7 @@ class RealityTileLoader {
|
|
|
155196
155393
|
}
|
|
155197
155394
|
switch (format) {
|
|
155198
155395
|
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TileFormat.Gltf:
|
|
155199
|
-
const props = createReaderPropsWithBaseUrl(streamBuffer, yAxisUp, tile
|
|
155396
|
+
const props = createReaderPropsWithBaseUrl(streamBuffer, yAxisUp, this._getReaderBaseUrl(tile));
|
|
155200
155397
|
if (props) {
|
|
155201
155398
|
reader = new _tile_internal__WEBPACK_IMPORTED_MODULE_7__.GltfGraphicsReader(props, {
|
|
155202
155399
|
iModel,
|
|
@@ -155233,7 +155430,7 @@ class RealityTileLoader {
|
|
|
155233
155430
|
return { geometry: geom };
|
|
155234
155431
|
}
|
|
155235
155432
|
async loadGraphicsFromStream(tile, streamBuffer, system, isCanceled) {
|
|
155236
|
-
const format = this._getFormat(streamBuffer);
|
|
155433
|
+
const format = this._normalizeFormat(this._getFormat(streamBuffer), tile);
|
|
155237
155434
|
if (undefined === isCanceled)
|
|
155238
155435
|
isCanceled = () => !tile.isLoading;
|
|
155239
155436
|
const { is3d, yAxisUp, iModel, modelId } = tile.realityRoot;
|
|
@@ -155291,8 +155488,7 @@ class RealityTileLoader {
|
|
|
155291
155488
|
reader = _tile_internal__WEBPACK_IMPORTED_MODULE_7__.I3dmReader.create(streamBuffer, iModel, modelId, is3d, tile.contentRange, system, yAxisUp, tile.isLeaf, isCanceled, undefined, this.wantDeduplicatedVertices, tileData);
|
|
155292
155489
|
break;
|
|
155293
155490
|
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TileFormat.Gltf:
|
|
155294
|
-
const
|
|
155295
|
-
const baseUrl = tree.baseUrl;
|
|
155491
|
+
const baseUrl = this._getReaderBaseUrl(tile);
|
|
155296
155492
|
const props = createReaderPropsWithBaseUrl(streamBuffer, yAxisUp, baseUrl);
|
|
155297
155493
|
if (props) {
|
|
155298
155494
|
reader = new _tile_internal__WEBPACK_IMPORTED_MODULE_7__.GltfGraphicsReader(props, {
|
|
@@ -166617,6 +166813,9 @@ class RealityTile extends _internal__WEBPACK_IMPORTED_MODULE_5__.Tile {
|
|
|
166617
166813
|
rangeCorners;
|
|
166618
166814
|
/** @internal */
|
|
166619
166815
|
region;
|
|
166816
|
+
/** The URL of this tile's content, used to resolve resources (e.g. external glTF images) referenced relatively by the content.
|
|
166817
|
+
* @internal */
|
|
166818
|
+
contentUrl;
|
|
166620
166819
|
/** @internal */
|
|
166621
166820
|
_geometry;
|
|
166622
166821
|
_everDisplayed = false;
|
|
@@ -166640,6 +166839,7 @@ class RealityTile extends _internal__WEBPACK_IMPORTED_MODULE_5__.Tile {
|
|
|
166640
166839
|
this.noContentButTerminateOnSelection = props.noContentButTerminateOnSelection;
|
|
166641
166840
|
this.rangeCorners = props.rangeCorners;
|
|
166642
166841
|
this.region = props.region;
|
|
166842
|
+
this.contentUrl = props.contentUrl;
|
|
166643
166843
|
this._geometricError = props.geometricError;
|
|
166644
166844
|
this.tree = tree;
|
|
166645
166845
|
if (undefined === this.transformToRoot)
|
|
@@ -168410,8 +168610,16 @@ class TileAdmin {
|
|
|
168410
168610
|
contextPreloadParentDepth;
|
|
168411
168611
|
/** @internal */
|
|
168412
168612
|
contextPreloadParentSkip;
|
|
168413
|
-
/**
|
|
168613
|
+
/** The Cesium Ion API key supplied via [[TileAdmin.Props.cesiumIonKey]], used by the built-in client to
|
|
168614
|
+
* authenticate directly with Cesium Ion. See [[canAccessCesium]] to test whether any Cesium access is configured.
|
|
168615
|
+
* @beta
|
|
168616
|
+
*/
|
|
168414
168617
|
cesiumIonKey;
|
|
168618
|
+
/** The custom [[CesiumAccessClient]] registered via [[TileAdmin.Props.cesiumAccess]], used to resolve Cesium
|
|
168619
|
+
* asset endpoints. When defined, it takes precedence over [[cesiumIonKey]].
|
|
168620
|
+
* @beta
|
|
168621
|
+
*/
|
|
168622
|
+
cesiumAccess;
|
|
168415
168623
|
_removeIModelConnectionOnCloseListener;
|
|
168416
168624
|
_totalElided = 0;
|
|
168417
168625
|
_rpcInitialized = false;
|
|
@@ -168451,6 +168659,13 @@ class TileAdmin {
|
|
|
168451
168659
|
numPendingTileTreePropsRequests: this._tileTreePropsRequests.length - numActiveTileTreePropsRequests,
|
|
168452
168660
|
};
|
|
168453
168661
|
}
|
|
168662
|
+
/** Returns `true` if any Cesium access is configured — that is, if a custom [[CesiumAccessClient]] has been
|
|
168663
|
+
* registered via [[TileAdmin.Props.cesiumAccess]], or if [[cesiumIonKey]] is set.
|
|
168664
|
+
* @beta
|
|
168665
|
+
*/
|
|
168666
|
+
get canAccessCesium() {
|
|
168667
|
+
return this.cesiumAccess !== undefined || this.cesiumIonKey !== undefined;
|
|
168668
|
+
}
|
|
168454
168669
|
/** Resets the cumulative (per-session) statistics like totalCompletedRequests, totalEmptyTiles, etc. */
|
|
168455
168670
|
resetStatistics() {
|
|
168456
168671
|
this.channels.resetStatistics();
|
|
@@ -168489,6 +168704,7 @@ class TileAdmin {
|
|
|
168489
168704
|
this.useLargerTiles = options.useLargerTiles ?? _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.defaultTileOptions.useLargerTiles;
|
|
168490
168705
|
this.mobileRealityTileMinToleranceRatio = Math.max(options.mobileRealityTileMinToleranceRatio ?? 3.0, 1.0);
|
|
168491
168706
|
this.cesiumIonKey = options.cesiumIonKey;
|
|
168707
|
+
this.cesiumAccess = options.cesiumAccess;
|
|
168492
168708
|
this._cloudStorage = options.tileStorage;
|
|
168493
168709
|
const gpuMemoryLimits = options.gpuMemoryLimits;
|
|
168494
168710
|
let gpuMemoryLimit;
|
|
@@ -171266,6 +171482,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
171266
171482
|
/* harmony export */ appendQueryParams: () => (/* reexport safe */ _internal_tile_map_UrlUtils__WEBPACK_IMPORTED_MODULE_48__.appendQueryParams),
|
|
171267
171483
|
/* harmony export */ collectMaskRefs: () => (/* reexport safe */ _internal_tile_PrimaryTileTree__WEBPACK_IMPORTED_MODULE_82__.collectMaskRefs),
|
|
171268
171484
|
/* harmony export */ compareMapLayer: () => (/* reexport safe */ _internal_render_webgl_MapLayerParams__WEBPACK_IMPORTED_MODULE_94__.compareMapLayer),
|
|
171485
|
+
/* harmony export */ computeCesiumTokenTimeoutInterval: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.computeCesiumTokenTimeoutInterval),
|
|
171269
171486
|
/* harmony export */ createClassifierTileTreeReference: () => (/* reexport safe */ _internal_tile_ClassifierTileTree__WEBPACK_IMPORTED_MODULE_83__.createClassifierTileTreeReference),
|
|
171270
171487
|
/* harmony export */ createDefaultViewFlagOverrides: () => (/* reexport safe */ _internal_tile_ViewFlagOverrides__WEBPACK_IMPORTED_MODULE_0__.createDefaultViewFlagOverrides),
|
|
171271
171488
|
/* harmony export */ createGraphicFromDescription: () => (/* reexport safe */ _internal_tile_ImdlGraphicsCreator__WEBPACK_IMPORTED_MODULE_37__.createGraphicFromDescription),
|
|
@@ -171282,6 +171499,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
171282
171499
|
/* harmony export */ decodeMeshoptBuffer: () => (/* reexport safe */ _internal_tile_MeshoptCompression__WEBPACK_IMPORTED_MODULE_93__.decodeMeshoptBuffer),
|
|
171283
171500
|
/* harmony export */ deflateCoordinates: () => (/* reexport safe */ _internal_tile_map_ImageryProviders_CoordinatesUtils__WEBPACK_IMPORTED_MODULE_47__.deflateCoordinates),
|
|
171284
171501
|
/* harmony export */ disposeTileTreesForGeometricModels: () => (/* reexport safe */ _internal_tile_PrimaryTileTree__WEBPACK_IMPORTED_MODULE_82__.disposeTileTreesForGeometricModels),
|
|
171502
|
+
/* harmony export */ getCesiumAccessClient: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumAccessClient),
|
|
171285
171503
|
/* harmony export */ getCesiumAccessTokenAndEndpointUrl: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumAccessTokenAndEndpointUrl),
|
|
171286
171504
|
/* harmony export */ getCesiumAssetUrl: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumAssetUrl),
|
|
171287
171505
|
/* harmony export */ getCesiumOSMBuildingsUrl: () => (/* reexport safe */ _map_CesiumTerrainProvider__WEBPACK_IMPORTED_MODULE_68__.getCesiumOSMBuildingsUrl),
|
|
@@ -171525,7 +171743,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
171525
171743
|
/* harmony export */ });
|
|
171526
171744
|
/* harmony import */ var _request_Request__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../request/Request */ "../../core/frontend/lib/esm/request/Request.js");
|
|
171527
171745
|
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
171528
|
-
/* harmony import */ var
|
|
171746
|
+
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
171747
|
+
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
171529
171748
|
/*---------------------------------------------------------------------------------------------
|
|
171530
171749
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
171531
171750
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -171536,12 +171755,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
171536
171755
|
|
|
171537
171756
|
|
|
171538
171757
|
|
|
171758
|
+
|
|
171539
171759
|
// cspell:ignore atae qdng uyzv auje sealevel
|
|
171540
171760
|
/** Provides an interface to the [Bing Maps elevation services](https://docs.microsoft.com/en-us/bingmaps/rest-services/elevations/).
|
|
171541
171761
|
* Use of these services requires an API key to be supplied via [[MapLayerOptions.BingMaps]] in the [[IModelAppOptions.mapLayerOptions]]
|
|
171542
171762
|
* passed to [[IModelApp.startup]].
|
|
171543
171763
|
* @public
|
|
171544
171764
|
* @extensions
|
|
171765
|
+
* @deprecated in 5.11.0. Provide an [[ElevationProvider]] and [[GeoidProvider]] implementation via [[IModelAppOptions.geospatialProviders]].
|
|
171766
|
+
* @note This class structurally satisfies both [[ElevationProvider]] and [[GeoidProvider]] but does not use an explicit
|
|
171767
|
+
* `implements` clause because api-extractor forbids `@public` classes from referencing `@beta` interfaces (ae-incompatible-release-tags).
|
|
171545
171768
|
*/
|
|
171546
171769
|
class BingElevationProvider {
|
|
171547
171770
|
_heightRangeRequestTemplate;
|
|
@@ -171550,8 +171773,9 @@ class BingElevationProvider {
|
|
|
171550
171773
|
/** @public */
|
|
171551
171774
|
constructor() {
|
|
171552
171775
|
let bingKey = "";
|
|
171776
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated -- this deprecated class reads from the deprecated BingMaps key by design
|
|
171553
171777
|
if (_IModelApp__WEBPACK_IMPORTED_MODULE_1__.IModelApp.mapLayerFormatRegistry.configOptions.BingMaps)
|
|
171554
|
-
bingKey = _IModelApp__WEBPACK_IMPORTED_MODULE_1__.IModelApp.mapLayerFormatRegistry.configOptions.BingMaps.value;
|
|
171778
|
+
bingKey = _IModelApp__WEBPACK_IMPORTED_MODULE_1__.IModelApp.mapLayerFormatRegistry.configOptions.BingMaps.value; // eslint-disable-line @typescript-eslint/no-deprecated
|
|
171555
171779
|
this._heightRangeRequestTemplate =
|
|
171556
171780
|
"https://dev.virtualearth.net/REST/v1/Elevation/Bounds?bounds={boundingBox}&rows=16&cols=16&heights=ellipsoid&key={BingMapsAPIKey}"
|
|
171557
171781
|
.replace("{BingMapsAPIKey}", bingKey);
|
|
@@ -171595,11 +171819,14 @@ class BingElevationProvider {
|
|
|
171595
171819
|
return undefined;
|
|
171596
171820
|
}
|
|
171597
171821
|
}
|
|
171598
|
-
|
|
171599
|
-
|
|
171600
|
-
|
|
171601
|
-
|
|
171602
|
-
|
|
171822
|
+
async getGeodeticToSeaLevelOffset(pointOrCarto, iModel) {
|
|
171823
|
+
let carto;
|
|
171824
|
+
if (pointOrCarto instanceof _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Cartographic) {
|
|
171825
|
+
carto = pointOrCarto;
|
|
171826
|
+
}
|
|
171827
|
+
else {
|
|
171828
|
+
carto = iModel.spatialToCartographicFromEcef(pointOrCarto);
|
|
171829
|
+
}
|
|
171603
171830
|
const requestUrl = this._seaLevelOffsetRequestTemplate.replace("{points}", `${carto.latitudeDegrees},${carto.longitudeDegrees}`);
|
|
171604
171831
|
try {
|
|
171605
171832
|
const tileResponseBody = await (0,_request_Request__WEBPACK_IMPORTED_MODULE_0__.request)(requestUrl, "json");
|
|
@@ -171610,18 +171837,19 @@ class BingElevationProvider {
|
|
|
171610
171837
|
}
|
|
171611
171838
|
}
|
|
171612
171839
|
/** Get the height (altitude) at a given iModel coordinate. The height is geodetic (WGS84 ellipsoid)
|
|
171613
|
-
* If geodetic is true (the default) then height is returned in the Ellipsoidal WGS84 datum. If geodetic is false then sea level height is returned using the Earth Gravitational Model 2008 (EGM2008 2.5
|
|
171614
|
-
*
|
|
171840
|
+
* If geodetic is true (the default) then height is returned in the Ellipsoidal WGS84 datum. If geodetic is false then sea level height is returned using the Earth Gravitational Model 2008 (EGM2008 2.5').
|
|
171841
|
+
* @deprecated in 5.11.0. Use [[ElevationProvider.getHeight]] via [[IModelApp.elevationProvider]] instead.
|
|
171615
171842
|
* @public
|
|
171616
171843
|
*/
|
|
171617
171844
|
async getHeightValue(point, iModel, geodetic = true) {
|
|
171618
171845
|
return this.getHeight(iModel.spatialToCartographicFromEcef(point), geodetic);
|
|
171619
171846
|
}
|
|
171620
171847
|
/** Get the height (altitude) range for a given iModel project extents. The height values are geodetic (WGS84 ellipsoid).
|
|
171848
|
+
* @deprecated in 5.11.0. Use standalone [[getHeightRange]] function instead.
|
|
171621
171849
|
* @public
|
|
171622
171850
|
*/
|
|
171623
171851
|
async getHeightRange(iModel) {
|
|
171624
|
-
const latLongRange =
|
|
171852
|
+
const latLongRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_3__.Range2d.createNull();
|
|
171625
171853
|
const range = iModel.projectExtents.clone();
|
|
171626
171854
|
// Expand for project surroundings.
|
|
171627
171855
|
range.expandInPlace(1000);
|
|
@@ -171630,13 +171858,14 @@ class BingElevationProvider {
|
|
|
171630
171858
|
latLongRange.extendXY(carto.longitudeDegrees, carto.latitudeDegrees);
|
|
171631
171859
|
}
|
|
171632
171860
|
const heights = await this.getHeights(latLongRange);
|
|
171633
|
-
return heights ?
|
|
171861
|
+
return heights ? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_3__.Range1d.createArray(heights) : _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_3__.Range1d.createNull();
|
|
171634
171862
|
}
|
|
171635
171863
|
/** Get the average height (altitude) for a given iModel project extents. The height values are geodetic (WGS84 ellipsoid).
|
|
171864
|
+
* @deprecated in 5.11.0. Use standalone [[getHeightAverage]] function instead.
|
|
171636
171865
|
* @public
|
|
171637
171866
|
*/
|
|
171638
171867
|
async getHeightAverage(iModel) {
|
|
171639
|
-
const latLongRange =
|
|
171868
|
+
const latLongRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_3__.Range2d.createNull();
|
|
171640
171869
|
for (const corner of iModel.projectExtents.corners()) {
|
|
171641
171870
|
const carto = iModel.spatialToCartographicFromEcef(corner);
|
|
171642
171871
|
latLongRange.extendXY(carto.longitudeDegrees, carto.latitudeDegrees);
|
|
@@ -171663,6 +171892,8 @@ class BingElevationProvider {
|
|
|
171663
171892
|
"use strict";
|
|
171664
171893
|
__webpack_require__.r(__webpack_exports__);
|
|
171665
171894
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
171895
|
+
/* harmony export */ computeCesiumTokenTimeoutInterval: () => (/* binding */ computeCesiumTokenTimeoutInterval),
|
|
171896
|
+
/* harmony export */ getCesiumAccessClient: () => (/* binding */ getCesiumAccessClient),
|
|
171666
171897
|
/* harmony export */ getCesiumAccessTokenAndEndpointUrl: () => (/* binding */ getCesiumAccessTokenAndEndpointUrl),
|
|
171667
171898
|
/* harmony export */ getCesiumAssetUrl: () => (/* binding */ getCesiumAssetUrl),
|
|
171668
171899
|
/* harmony export */ getCesiumOSMBuildingsUrl: () => (/* binding */ getCesiumOSMBuildingsUrl),
|
|
@@ -171700,7 +171931,7 @@ var QuantizedMeshExtensionIds;
|
|
|
171700
171931
|
QuantizedMeshExtensionIds[QuantizedMeshExtensionIds["WaterMask"] = 2] = "WaterMask";
|
|
171701
171932
|
QuantizedMeshExtensionIds[QuantizedMeshExtensionIds["Metadata"] = 4] = "Metadata";
|
|
171702
171933
|
})(QuantizedMeshExtensionIds || (QuantizedMeshExtensionIds = {}));
|
|
171703
|
-
/** Return the URL for a Cesium
|
|
171934
|
+
/** Return the URL for a Cesium Ion asset from its asset ID and request Key.
|
|
171704
171935
|
* @public
|
|
171705
171936
|
*/
|
|
171706
171937
|
function getCesiumAssetUrl(osmAssetId, requestKey) {
|
|
@@ -171708,10 +171939,30 @@ function getCesiumAssetUrl(osmAssetId, requestKey) {
|
|
|
171708
171939
|
}
|
|
171709
171940
|
/** @internal */
|
|
171710
171941
|
function getCesiumOSMBuildingsUrl() {
|
|
171711
|
-
|
|
171712
|
-
if (undefined === key)
|
|
171942
|
+
if (!_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tileAdmin.canAccessCesium)
|
|
171713
171943
|
return undefined;
|
|
171714
|
-
return getCesiumAssetUrl(+_itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumIonAssetId.OSMBuildings,
|
|
171944
|
+
return getCesiumAssetUrl(+_itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumIonAssetId.OSMBuildings, "");
|
|
171945
|
+
}
|
|
171946
|
+
/** Returns the registered [[CesiumAccessClient]], or a default [[CesiumIonClient]] if none is registered.
|
|
171947
|
+
* @internal
|
|
171948
|
+
*/
|
|
171949
|
+
function getCesiumAccessClient() {
|
|
171950
|
+
return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tileAdmin.cesiumAccess ?? new CesiumIonClient();
|
|
171951
|
+
}
|
|
171952
|
+
const cesiumTokenTimeoutInterval = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(60 * 30); // Request a new access token every 30 minutes...
|
|
171953
|
+
const cesiumMinTokenTimeoutInterval = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(60); // ...but never re-resolve more often than once per minute.
|
|
171954
|
+
/** Compute when to next re-resolve a Cesium access token. Honors the endpoint's `expiresAt` when it is a valid
|
|
171955
|
+
* future time, but guards against an invalid (NaN) date - which would otherwise disable refresh entirely - and
|
|
171956
|
+
* against a past/imminent expiry that would re-resolve the endpoint on essentially every tile read.
|
|
171957
|
+
* @internal
|
|
171958
|
+
*/
|
|
171959
|
+
function computeCesiumTokenTimeoutInterval(expiresAt) {
|
|
171960
|
+
if (undefined === expiresAt)
|
|
171961
|
+
return cesiumTokenTimeoutInterval;
|
|
171962
|
+
const remainingMs = expiresAt.getTime() - Date.now();
|
|
171963
|
+
if (!Number.isFinite(remainingMs))
|
|
171964
|
+
return cesiumTokenTimeoutInterval;
|
|
171965
|
+
return _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromMilliseconds(Math.max(remainingMs, cesiumMinTokenTimeoutInterval.milliseconds));
|
|
171715
171966
|
}
|
|
171716
171967
|
/** @internal */
|
|
171717
171968
|
async function getCesiumAccessTokenAndEndpointUrl(assetId, requestKey) {
|
|
@@ -171745,15 +171996,19 @@ function notifyTerrainError(detailedDescription) {
|
|
|
171745
171996
|
}
|
|
171746
171997
|
/** @internal */
|
|
171747
171998
|
async function getCesiumTerrainProvider(opts) {
|
|
171748
|
-
const
|
|
171749
|
-
|
|
171999
|
+
const assetId = opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default;
|
|
172000
|
+
const client = getCesiumAccessClient();
|
|
172001
|
+
const endpoint = await client.getAssetEndpoint(assetId, opts.iTwinId);
|
|
172002
|
+
if (!endpoint) {
|
|
171750
172003
|
notifyTerrainError(_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString(`iModelJs:BackgroundMap.MissingCesiumToken`));
|
|
171751
172004
|
return undefined;
|
|
171752
172005
|
}
|
|
172006
|
+
// Resource paths (layer.json, tiles) are appended directly to the base URL, so ensure it ends with a slash.
|
|
172007
|
+
const baseUrl = endpoint.url.endsWith("/") ? endpoint.url : `${endpoint.url}/`;
|
|
171753
172008
|
let layers;
|
|
171754
172009
|
try {
|
|
171755
|
-
const layerRequestOptions = { headers: { authorization: `Bearer ${
|
|
171756
|
-
const layerUrl = `${
|
|
172010
|
+
const layerRequestOptions = { headers: { authorization: `Bearer ${endpoint.accessToken}` } };
|
|
172011
|
+
const layerUrl = `${baseUrl}layer.json`;
|
|
171757
172012
|
layers = await (0,_request_Request__WEBPACK_IMPORTED_MODULE_4__.request)(layerUrl, "json", layerRequestOptions);
|
|
171758
172013
|
}
|
|
171759
172014
|
catch {
|
|
@@ -171782,12 +172037,12 @@ async function getCesiumTerrainProvider(opts) {
|
|
|
171782
172037
|
}
|
|
171783
172038
|
}
|
|
171784
172039
|
}
|
|
171785
|
-
let tileUrlTemplate =
|
|
172040
|
+
let tileUrlTemplate = baseUrl + layers.tiles[0].replace("{version}", layers.version);
|
|
171786
172041
|
if (opts.wantNormals)
|
|
171787
172042
|
tileUrlTemplate = tileUrlTemplate.replace("?", "?extensions=octvertexnormals-watermask-metadata&");
|
|
171788
172043
|
const maxDepth = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asInt(layers.maxzoom, 19);
|
|
171789
172044
|
// TBD -- When we have an API extract the heights for the project from the terrain tiles - for use temporary Bing elevation.
|
|
171790
|
-
return new CesiumTerrainProvider(opts,
|
|
172045
|
+
return new CesiumTerrainProvider(opts, endpoint.accessToken, endpoint.expiresAt, tileUrlTemplate, maxDepth, tilingScheme, tileAvailability, layers.metadataAvailability);
|
|
171791
172046
|
}
|
|
171792
172047
|
function zigZagDecode(value) {
|
|
171793
172048
|
return (value >> 1) ^ (-(value & 1));
|
|
@@ -171822,19 +172077,19 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
171822
172077
|
_metaDataAvailableLevel;
|
|
171823
172078
|
_exaggeration;
|
|
171824
172079
|
_assetId;
|
|
172080
|
+
_iTwinId;
|
|
171825
172081
|
static _scratchQPoint2d = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint2d.fromScalars(0, 0);
|
|
171826
172082
|
static _scratchPoint2d = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point2d.createZero();
|
|
171827
172083
|
static _scratchPoint = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d.createZero();
|
|
171828
172084
|
static _scratchNormal = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.createZero();
|
|
171829
172085
|
static _scratchHeightRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range1d.createNull();
|
|
171830
|
-
static _tokenTimeoutInterval = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeDuration.fromSeconds(60 * 30); // Request a new access token every 30 minutes...
|
|
171831
172086
|
_tokenTimeOut;
|
|
171832
172087
|
forceTileLoad(tile) {
|
|
171833
172088
|
// Force loading of the metadata availability tiles as these are required for determining the availability of descendants.
|
|
171834
172089
|
const mapTile = tile;
|
|
171835
172090
|
return undefined !== this._metaDataAvailableLevel && mapTile.quadId.level === this._metaDataAvailableLevel && !mapTile.everLoaded;
|
|
171836
172091
|
}
|
|
171837
|
-
constructor(opts, accessToken, tileUrlTemplate, maxDepth, tilingScheme, tileAvailability, metaDataAvailableLevel) {
|
|
172092
|
+
constructor(opts, accessToken, expiresAt, tileUrlTemplate, maxDepth, tilingScheme, tileAvailability, metaDataAvailableLevel) {
|
|
171838
172093
|
super();
|
|
171839
172094
|
this._wantSkirts = opts.wantSkirts;
|
|
171840
172095
|
this._exaggeration = opts.exaggeration;
|
|
@@ -171845,7 +172100,8 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
171845
172100
|
this._tileAvailability = tileAvailability;
|
|
171846
172101
|
this._metaDataAvailableLevel = metaDataAvailableLevel;
|
|
171847
172102
|
this._assetId = opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default;
|
|
171848
|
-
this.
|
|
172103
|
+
this._iTwinId = opts.iTwinId;
|
|
172104
|
+
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(computeCesiumTokenTimeoutInterval(expiresAt));
|
|
171849
172105
|
}
|
|
171850
172106
|
/** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
|
|
171851
172107
|
addLogoCards(cards) {
|
|
@@ -171891,11 +172147,12 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
171891
172147
|
// ###TODO why does he update the access token when reading the mesh instead of when requesting it?
|
|
171892
172148
|
// This function only returns undefined if it fails to acquire token - but it doesn't need the token...
|
|
171893
172149
|
if (_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().milliseconds > this._tokenTimeOut.milliseconds) {
|
|
171894
|
-
const
|
|
171895
|
-
|
|
172150
|
+
const client = getCesiumAccessClient();
|
|
172151
|
+
const endpoint = await client.getAssetEndpoint(this._assetId, this._iTwinId);
|
|
172152
|
+
if (!endpoint || args.isCanceled())
|
|
171896
172153
|
return undefined;
|
|
171897
|
-
this._accessToken =
|
|
171898
|
-
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(
|
|
172154
|
+
this._accessToken = endpoint.accessToken;
|
|
172155
|
+
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(computeCesiumTokenTimeoutInterval(endpoint.expiresAt));
|
|
171899
172156
|
}
|
|
171900
172157
|
const { data, tile } = args;
|
|
171901
172158
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(data instanceof Uint8Array);
|
|
@@ -172082,6 +172339,18 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
172082
172339
|
return undefined === heightRange ? parentRange : heightRange;
|
|
172083
172340
|
}
|
|
172084
172341
|
}
|
|
172342
|
+
/** Default [[CesiumAccessClient]] that authenticates directly with Cesium Ion using [[TileAdmin.cesiumIonKey]].
|
|
172343
|
+
* This is used when no custom [[CesiumAccessClient]] is registered via [[TileAdmin.Props.cesiumAccess]].
|
|
172344
|
+
* @internal
|
|
172345
|
+
*/
|
|
172346
|
+
class CesiumIonClient {
|
|
172347
|
+
async getAssetEndpoint(assetId, _iTwinId) {
|
|
172348
|
+
const result = await getCesiumAccessTokenAndEndpointUrl(assetId);
|
|
172349
|
+
if (!result.token || !result.url)
|
|
172350
|
+
return undefined;
|
|
172351
|
+
return { accessToken: result.token, url: result.url };
|
|
172352
|
+
}
|
|
172353
|
+
}
|
|
172085
172354
|
|
|
172086
172355
|
|
|
172087
172356
|
/***/ }),
|
|
@@ -175517,15 +175786,25 @@ class MapTreeSupplier {
|
|
|
175517
175786
|
}
|
|
175518
175787
|
return cmp;
|
|
175519
175788
|
}
|
|
175520
|
-
async computeHeightBias(heightOrigin, heightOriginMode, exaggeration, iModel
|
|
175789
|
+
async computeHeightBias(heightOrigin, heightOriginMode, exaggeration, iModel) {
|
|
175521
175790
|
const projectCenter = iModel.projectExtents.center;
|
|
175522
175791
|
switch (heightOriginMode) {
|
|
175523
|
-
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.TerrainHeightOriginMode.Ground:
|
|
175524
|
-
|
|
175792
|
+
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.TerrainHeightOriginMode.Ground: {
|
|
175793
|
+
// Non-geolocated iModels skip elevation lookup — matches previous BingElevationProvider fallback behavior.
|
|
175794
|
+
if (!iModel.isGeoLocated)
|
|
175795
|
+
return heightOrigin;
|
|
175796
|
+
const carto = iModel.spatialToCartographicFromEcef(projectCenter);
|
|
175797
|
+
return heightOrigin + exaggeration * (await _IModelApp__WEBPACK_IMPORTED_MODULE_4__.IModelApp.elevationProvider.getHeight(carto));
|
|
175798
|
+
}
|
|
175525
175799
|
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.TerrainHeightOriginMode.Geodetic:
|
|
175526
175800
|
return heightOrigin;
|
|
175527
|
-
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.TerrainHeightOriginMode.Geoid:
|
|
175528
|
-
|
|
175801
|
+
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.TerrainHeightOriginMode.Geoid: {
|
|
175802
|
+
// Non-geolocated iModels skip geoid lookup — matches previous BingElevationProvider fallback behavior.
|
|
175803
|
+
if (!iModel.isGeoLocated)
|
|
175804
|
+
return heightOrigin;
|
|
175805
|
+
const carto = iModel.spatialToCartographicFromEcef(projectCenter);
|
|
175806
|
+
return heightOrigin + await _IModelApp__WEBPACK_IMPORTED_MODULE_4__.IModelApp.geoidProvider.getGeodeticToSeaLevelOffset(carto);
|
|
175807
|
+
}
|
|
175529
175808
|
}
|
|
175530
175809
|
}
|
|
175531
175810
|
async createTileTree(id, iModel) {
|
|
@@ -175539,12 +175818,13 @@ class MapTreeSupplier {
|
|
|
175539
175818
|
wantNormals: id.wantNormals,
|
|
175540
175819
|
dataSource: id.terrainDataSource,
|
|
175541
175820
|
produceGeometry: id.produceGeometry,
|
|
175821
|
+
iTwinId: iModel.iTwinId,
|
|
175542
175822
|
};
|
|
175543
175823
|
if (id.applyTerrain) {
|
|
175544
175824
|
await _ApproximateTerrainHeights__WEBPACK_IMPORTED_MODULE_3__.ApproximateTerrainHeights.instance.initialize();
|
|
175545
|
-
|
|
175546
|
-
|
|
175547
|
-
geodeticOffset = await
|
|
175825
|
+
bimElevationBias = -await this.computeHeightBias(id.terrainHeightOrigin, id.terrainHeightOriginMode, id.terrainExaggeration, iModel);
|
|
175826
|
+
const carto = iModel.isGeoLocated ? iModel.spatialToCartographicFromEcef(iModel.projectExtents.center) : undefined;
|
|
175827
|
+
geodeticOffset = carto ? await _IModelApp__WEBPACK_IMPORTED_MODULE_4__.IModelApp.geoidProvider.getGeodeticToSeaLevelOffset(carto) : 0;
|
|
175548
175828
|
const provider = _IModelApp__WEBPACK_IMPORTED_MODULE_4__.IModelApp.terrainProviderRegistry.find(id.terrainProviderName);
|
|
175549
175829
|
if (provider)
|
|
175550
175830
|
terrainProvider = await provider.createTerrainMeshProvider(terrainOpts);
|
|
@@ -187694,23 +187974,22 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
187694
187974
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
187695
187975
|
/* harmony import */ var _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @itwin/appui-abstract */ "../../ui/appui-abstract/lib/esm/appui-abstract.js");
|
|
187696
187976
|
/* harmony import */ var _AccuDraw__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../AccuDraw */ "../../core/frontend/lib/esm/AccuDraw.js");
|
|
187697
|
-
/* harmony import */ var
|
|
187698
|
-
/* harmony import */ var
|
|
187699
|
-
/* harmony import */ var
|
|
187700
|
-
/* harmony import */ var
|
|
187701
|
-
/* harmony import */ var
|
|
187702
|
-
/* harmony import */ var
|
|
187703
|
-
/* harmony import */ var
|
|
187704
|
-
/* harmony import */ var
|
|
187705
|
-
/* harmony import */ var
|
|
187706
|
-
/* harmony import */ var
|
|
187707
|
-
/* harmony import */ var
|
|
187708
|
-
/* harmony import */ var
|
|
187709
|
-
/* harmony import */ var
|
|
187710
|
-
/* harmony import */ var
|
|
187711
|
-
/* harmony import */ var
|
|
187712
|
-
/* harmony import */ var
|
|
187713
|
-
/* harmony import */ var _common_render_GraphicType__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../common/render/GraphicType */ "../../core/frontend/lib/esm/common/render/GraphicType.js");
|
|
187977
|
+
/* harmony import */ var _CoordSystem__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../CoordSystem */ "../../core/frontend/lib/esm/CoordSystem.js");
|
|
187978
|
+
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
187979
|
+
/* harmony import */ var _properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../properties/FormattedQuantityDescription */ "../../core/frontend/lib/esm/properties/FormattedQuantityDescription.js");
|
|
187980
|
+
/* harmony import */ var _render_Pixel__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../render/Pixel */ "../../core/frontend/lib/esm/render/Pixel.js");
|
|
187981
|
+
/* harmony import */ var _StandardView__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../StandardView */ "../../core/frontend/lib/esm/StandardView.js");
|
|
187982
|
+
/* harmony import */ var _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../ViewGlobalLocation */ "../../core/frontend/lib/esm/ViewGlobalLocation.js");
|
|
187983
|
+
/* harmony import */ var _Viewport__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../Viewport */ "../../core/frontend/lib/esm/Viewport.js");
|
|
187984
|
+
/* harmony import */ var _common_ViewRect__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../common/ViewRect */ "../../core/frontend/lib/esm/common/ViewRect.js");
|
|
187985
|
+
/* harmony import */ var _ViewState__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../ViewState */ "../../core/frontend/lib/esm/ViewState.js");
|
|
187986
|
+
/* harmony import */ var _ViewStatus__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../ViewStatus */ "../../core/frontend/lib/esm/ViewStatus.js");
|
|
187987
|
+
/* harmony import */ var _EditManipulator__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./EditManipulator */ "../../core/frontend/lib/esm/tools/EditManipulator.js");
|
|
187988
|
+
/* harmony import */ var _PrimitiveTool__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./PrimitiveTool */ "../../core/frontend/lib/esm/tools/PrimitiveTool.js");
|
|
187989
|
+
/* harmony import */ var _Tool__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./Tool */ "../../core/frontend/lib/esm/tools/Tool.js");
|
|
187990
|
+
/* harmony import */ var _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./ToolAssistance */ "../../core/frontend/lib/esm/tools/ToolAssistance.js");
|
|
187991
|
+
/* harmony import */ var _ToolSettings__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./ToolSettings */ "../../core/frontend/lib/esm/tools/ToolSettings.js");
|
|
187992
|
+
/* harmony import */ var _common_render_GraphicType__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../common/render/GraphicType */ "../../core/frontend/lib/esm/common/render/GraphicType.js");
|
|
187714
187993
|
/*---------------------------------------------------------------------------------------------
|
|
187715
187994
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
187716
187995
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -187737,7 +188016,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
187737
188016
|
|
|
187738
188017
|
|
|
187739
188018
|
|
|
187740
|
-
|
|
187741
188019
|
|
|
187742
188020
|
|
|
187743
188021
|
/** @internal */
|
|
@@ -187757,7 +188035,7 @@ var ViewHandleType;
|
|
|
187757
188035
|
/* eslint-enable no-restricted-syntax */
|
|
187758
188036
|
// dampen an inertia vector according to tool settings
|
|
187759
188037
|
const inertialDampen = (pt) => {
|
|
187760
|
-
pt.scaleInPlace(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.clamp(
|
|
188038
|
+
pt.scaleInPlace(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.clamp(_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.viewingInertia.damping, .75, .999));
|
|
187761
188039
|
};
|
|
187762
188040
|
const focusHome = () => {
|
|
187763
188041
|
const element = document.activeElement;
|
|
@@ -187769,16 +188047,16 @@ const focusHome = () => {
|
|
|
187769
188047
|
* @public
|
|
187770
188048
|
* @extensions
|
|
187771
188049
|
*/
|
|
187772
|
-
class ViewTool extends
|
|
188050
|
+
class ViewTool extends _Tool__WEBPACK_IMPORTED_MODULE_17__.InteractiveTool {
|
|
187773
188051
|
viewport;
|
|
187774
|
-
static translate(val) { return
|
|
188052
|
+
static translate(val) { return _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate(`View.${val}`); }
|
|
187775
188053
|
inDynamicUpdate = false;
|
|
187776
188054
|
beginDynamicUpdate() { this.inDynamicUpdate = true; }
|
|
187777
188055
|
endDynamicUpdate() { this.inDynamicUpdate = false; }
|
|
187778
188056
|
async run(..._args) {
|
|
187779
|
-
const toolAdmin =
|
|
188057
|
+
const toolAdmin = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin;
|
|
187780
188058
|
if (undefined !== this.viewport && this.viewport === toolAdmin.markupView) {
|
|
187781
|
-
|
|
188059
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.notifications.outputPromptByKey("iModelJs:Viewing.NotDuringMarkup");
|
|
187782
188060
|
return false;
|
|
187783
188061
|
}
|
|
187784
188062
|
if (!await toolAdmin.onInstallTool(this))
|
|
@@ -187793,12 +188071,12 @@ class ViewTool extends _Tool__WEBPACK_IMPORTED_MODULE_18__.InteractiveTool {
|
|
|
187793
188071
|
}
|
|
187794
188072
|
async onResetButtonUp(_ev) {
|
|
187795
188073
|
await this.exitTool();
|
|
187796
|
-
return
|
|
188074
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
187797
188075
|
}
|
|
187798
188076
|
/** Do not override. */
|
|
187799
|
-
async exitTool() { return
|
|
188077
|
+
async exitTool() { return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.exitViewTool(); }
|
|
187800
188078
|
static showPrompt(prompt) {
|
|
187801
|
-
|
|
188079
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.notifications.outputPrompt(ViewTool.translate(prompt));
|
|
187802
188080
|
}
|
|
187803
188081
|
}
|
|
187804
188082
|
/** @internal */
|
|
@@ -187816,7 +188094,7 @@ class ViewingToolHandle {
|
|
|
187816
188094
|
motion(_ev) { return false; }
|
|
187817
188095
|
checkOneShot() { return true; }
|
|
187818
188096
|
getHandleCursor() { return "default"; }
|
|
187819
|
-
focusIn() {
|
|
188097
|
+
focusIn() { _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.setCursor(this.getHandleCursor()); }
|
|
187820
188098
|
drawHandle(_context, _hasFocus) { }
|
|
187821
188099
|
onWheel(_ev) { return false; }
|
|
187822
188100
|
onTouchStart(_ev) { return false; }
|
|
@@ -187831,12 +188109,12 @@ class ViewingToolHandle {
|
|
|
187831
188109
|
needDepthPoint(_ev, _isPreview) { return false; }
|
|
187832
188110
|
adjustDepthPoint(isValid, _vp, _plane, source) {
|
|
187833
188111
|
switch (source) {
|
|
187834
|
-
case
|
|
187835
|
-
case
|
|
187836
|
-
case
|
|
187837
|
-
case
|
|
187838
|
-
case
|
|
187839
|
-
case
|
|
188112
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.Geometry:
|
|
188113
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.Model:
|
|
188114
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.BackgroundMap:
|
|
188115
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.GroundPlane:
|
|
188116
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.Grid:
|
|
188117
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.Map:
|
|
187840
188118
|
return isValid; // Sources with visible geometry/graphics are considered valid by default...
|
|
187841
188119
|
default:
|
|
187842
188120
|
return false; // Sources without visible geometry/graphics are NOT considered valid by default...
|
|
@@ -187999,7 +188277,7 @@ class ViewManip extends ViewTool {
|
|
|
187999
188277
|
previewDepthPoint(context) {
|
|
188000
188278
|
if (undefined === this._depthPreview)
|
|
188001
188279
|
return;
|
|
188002
|
-
const cursorVp =
|
|
188280
|
+
const cursorVp = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.cursorView;
|
|
188003
188281
|
if (cursorVp !== context.viewport)
|
|
188004
188282
|
return;
|
|
188005
188283
|
let origin = this._depthPreview.plane.getOriginRef();
|
|
@@ -188015,10 +188293,10 @@ class ViewManip extends ViewTool {
|
|
|
188015
188293
|
const radius = this._depthPreview.pickRadius * pixelSize;
|
|
188016
188294
|
const rMatrix = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d.createRigidHeadsUp(normal);
|
|
188017
188295
|
const ellipse = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Arc3d.createScaledXYColumns(origin, rMatrix, radius, radius / skew, _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.AngleSweep.create360());
|
|
188018
|
-
const colorBase = (this._depthPreview.isDefaultDepth ? _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef.red : (
|
|
188019
|
-
const colorLine =
|
|
188296
|
+
const colorBase = (this._depthPreview.isDefaultDepth ? _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef.red : (_Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.Geometry === this._depthPreview.source ? _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef.green : context.viewport.hilite.color));
|
|
188297
|
+
const colorLine = _EditManipulator__WEBPACK_IMPORTED_MODULE_15__.EditManipulator.HandleUtils.adjustForBackgroundColor(colorBase, cursorVp).withTransparency(50);
|
|
188020
188298
|
const colorFill = colorLine.withTransparency(200);
|
|
188021
|
-
const builder = context.createGraphicBuilder(
|
|
188299
|
+
const builder = context.createGraphicBuilder(_common_render_GraphicType__WEBPACK_IMPORTED_MODULE_20__.GraphicType.WorldOverlay);
|
|
188022
188300
|
builder.setSymbology(colorLine, colorFill, 1, this._depthPreview.isDefaultDepth ? _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.LinePixels.Code2 : _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.LinePixels.Solid);
|
|
188023
188301
|
builder.addArc(ellipse, true, true);
|
|
188024
188302
|
builder.addArc(ellipse, false, false);
|
|
@@ -188029,7 +188307,7 @@ class ViewManip extends ViewTool {
|
|
|
188029
188307
|
getDepthPointGeometryId() {
|
|
188030
188308
|
if (undefined === this._depthPreview)
|
|
188031
188309
|
return undefined;
|
|
188032
|
-
return (
|
|
188310
|
+
return (_Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.Geometry === this._depthPreview.source ? this._depthPreview.sourceId : undefined);
|
|
188033
188311
|
}
|
|
188034
188312
|
/** @internal */
|
|
188035
188313
|
clearDepthPoint() {
|
|
@@ -188048,20 +188326,20 @@ class ViewManip extends ViewTool {
|
|
|
188048
188326
|
const vp = ev.viewport;
|
|
188049
188327
|
if (undefined === vp || undefined === this.viewHandles.hitHandle || !this.viewHandles.hitHandle.needDepthPoint(ev, isPreview))
|
|
188050
188328
|
return undefined;
|
|
188051
|
-
const pickRadiusPixels = vp.pixelsFromInches(
|
|
188329
|
+
const pickRadiusPixels = vp.pixelsFromInches(_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.viewToolPickRadiusInches);
|
|
188052
188330
|
const result = vp.pickDepthPoint(ev.rawPoint, pickRadiusPixels);
|
|
188053
188331
|
let isValidDepth = false;
|
|
188054
188332
|
switch (result.source) {
|
|
188055
|
-
case
|
|
188056
|
-
case
|
|
188057
|
-
case
|
|
188333
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.Geometry:
|
|
188334
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.Model:
|
|
188335
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.Map:
|
|
188058
188336
|
isValidDepth = true;
|
|
188059
188337
|
break;
|
|
188060
|
-
case
|
|
188061
|
-
case
|
|
188062
|
-
case
|
|
188063
|
-
case
|
|
188064
|
-
case
|
|
188338
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.BackgroundMap:
|
|
188339
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.GroundPlane:
|
|
188340
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.Grid:
|
|
188341
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.ACS:
|
|
188342
|
+
case _Viewport__WEBPACK_IMPORTED_MODULE_11__.DepthPointSource.TargetPoint:
|
|
188065
188343
|
const npcPt = vp.worldToNpc(result.plane.getOriginRef());
|
|
188066
188344
|
isValidDepth = !(npcPt.z < 0.0 || npcPt.z > 1.0);
|
|
188067
188345
|
break;
|
|
@@ -188097,7 +188375,7 @@ class ViewManip extends ViewTool {
|
|
|
188097
188375
|
async onDataButtonDown(ev) {
|
|
188098
188376
|
// Tool was started in "drag required" mode, don't advance tool state and wait to see if we get the start drag event.
|
|
188099
188377
|
if ((0 === this.nPts && this.isDraggingRequired && !this.isDragging) || undefined === ev.viewport)
|
|
188100
|
-
return
|
|
188378
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
188101
188379
|
switch (this.nPts) {
|
|
188102
188380
|
case 0:
|
|
188103
188381
|
this.changeViewport(ev.viewport);
|
|
@@ -188115,46 +188393,46 @@ class ViewManip extends ViewTool {
|
|
|
188115
188393
|
else
|
|
188116
188394
|
await this.onReinitialize();
|
|
188117
188395
|
}
|
|
188118
|
-
return
|
|
188396
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
188119
188397
|
}
|
|
188120
188398
|
async onDataButtonUp(_ev) {
|
|
188121
188399
|
if (this.nPts <= 1 && this.isDraggingRequired && !this.isDragging && this.oneShot)
|
|
188122
188400
|
await this.exitTool();
|
|
188123
|
-
return
|
|
188401
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
188124
188402
|
}
|
|
188125
188403
|
async onMouseWheel(inputEv) {
|
|
188126
188404
|
const ev = inputEv.clone();
|
|
188127
188405
|
if (this.viewHandles.onWheel(ev)) // notify handles that wheel has rolled.
|
|
188128
|
-
return
|
|
188129
|
-
await
|
|
188130
|
-
return
|
|
188406
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
188407
|
+
await _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.processWheelEvent(ev, false);
|
|
188408
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
188131
188409
|
}
|
|
188132
188410
|
/** @internal */
|
|
188133
188411
|
async startHandleDrag(ev, forcedHandle) {
|
|
188134
188412
|
if (this.inHandleModify)
|
|
188135
|
-
return
|
|
188413
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No; // If already changing the view reject the request...
|
|
188136
188414
|
if (undefined !== forcedHandle) {
|
|
188137
188415
|
if (!this.viewHandles.hasHandle(forcedHandle))
|
|
188138
|
-
return
|
|
188416
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No; // If requested handle isn't present reject the request...
|
|
188139
188417
|
this.forcedHandle = forcedHandle;
|
|
188140
188418
|
}
|
|
188141
188419
|
this.receivedDownEvent = true; // Request up events even though we may not have gotten the down event...
|
|
188142
188420
|
this.isDragging = true;
|
|
188143
188421
|
if (0 === this.nPts)
|
|
188144
188422
|
await this.onDataButtonDown(ev);
|
|
188145
|
-
return
|
|
188423
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
188146
188424
|
}
|
|
188147
188425
|
async onMouseStartDrag(ev) {
|
|
188148
|
-
if (
|
|
188149
|
-
return
|
|
188426
|
+
if (_Tool__WEBPACK_IMPORTED_MODULE_17__.BeButton.Data !== ev.button)
|
|
188427
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
188150
188428
|
return this.startHandleDrag(ev);
|
|
188151
188429
|
}
|
|
188152
188430
|
async onMouseEndDrag(ev) {
|
|
188153
188431
|
// NOTE: To support startHandleDrag being called by IdleTool for middle button drag, check inHandleModify and not the button type...
|
|
188154
188432
|
if (!this.inHandleModify)
|
|
188155
|
-
return
|
|
188433
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
188156
188434
|
this.isDragging = false;
|
|
188157
|
-
return (0 === this.nPts) ?
|
|
188435
|
+
return (0 === this.nPts) ? _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes : this.onDataButtonDown(ev);
|
|
188158
188436
|
}
|
|
188159
188437
|
async onMouseMotion(ev) {
|
|
188160
188438
|
if (0 === this.nPts && this.viewHandles.testHit(ev.viewPoint))
|
|
@@ -188188,71 +188466,71 @@ class ViewManip extends ViewTool {
|
|
|
188188
188466
|
if (undefined !== focusHandle && await focusHandle.onTouchComplete(ev))
|
|
188189
188467
|
return;
|
|
188190
188468
|
if (this.inHandleModify)
|
|
188191
|
-
return
|
|
188469
|
+
return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.convertTouchEndToButtonUp(ev);
|
|
188192
188470
|
}
|
|
188193
188471
|
async onTouchCancel(ev) {
|
|
188194
188472
|
const focusHandle = this.viewHandles.focusHandle;
|
|
188195
188473
|
if (undefined !== focusHandle && await focusHandle.onTouchCancel(ev))
|
|
188196
188474
|
return;
|
|
188197
188475
|
if (this.inHandleModify)
|
|
188198
|
-
return
|
|
188476
|
+
return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.convertTouchEndToButtonUp(ev, _Tool__WEBPACK_IMPORTED_MODULE_17__.BeButton.Reset);
|
|
188199
188477
|
}
|
|
188200
188478
|
async onTouchMove(ev) {
|
|
188201
188479
|
const focusHandle = this.viewHandles.focusHandle;
|
|
188202
188480
|
if (undefined !== focusHandle && focusHandle.onTouchMove(ev))
|
|
188203
188481
|
return;
|
|
188204
188482
|
if (this.inHandleModify)
|
|
188205
|
-
return
|
|
188483
|
+
return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.convertTouchMoveToMotion(ev);
|
|
188206
188484
|
}
|
|
188207
188485
|
async onTouchMoveStart(ev, startEv) {
|
|
188208
188486
|
const focusHandle = this.viewHandles.focusHandle;
|
|
188209
188487
|
if (undefined !== focusHandle && focusHandle.onTouchMoveStart(ev, startEv))
|
|
188210
|
-
return
|
|
188488
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
188211
188489
|
if (!this.inHandleModify && startEv.isSingleTouch)
|
|
188212
|
-
await
|
|
188213
|
-
return this.inHandleModify ?
|
|
188490
|
+
await _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.convertTouchMoveStartToButtonDownAndMotion(startEv, ev);
|
|
188491
|
+
return this.inHandleModify ? _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes : _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
188214
188492
|
}
|
|
188215
188493
|
async onTouchTap(ev) {
|
|
188216
188494
|
const focusHandle = this.viewHandles.focusHandle;
|
|
188217
188495
|
if (undefined !== focusHandle && focusHandle.onTouchTap(ev))
|
|
188218
|
-
return
|
|
188219
|
-
return ev.isSingleTap ?
|
|
188496
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
188497
|
+
return ev.isSingleTap ? _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes : _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No; // Prevent IdleTool from converting single tap into data button down/up...
|
|
188220
188498
|
}
|
|
188221
188499
|
async onKeyTransition(wentDown, keyEvent) {
|
|
188222
188500
|
const focusHandle = this.viewHandles.focusHandle;
|
|
188223
|
-
return (undefined !== focusHandle && focusHandle.onKeyTransition(wentDown, keyEvent) ?
|
|
188501
|
+
return (undefined !== focusHandle && focusHandle.onKeyTransition(wentDown, keyEvent) ? _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes : _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No);
|
|
188224
188502
|
}
|
|
188225
188503
|
async onModifierKeyTransition(wentDown, modifier, event) {
|
|
188226
188504
|
const focusHandle = this.viewHandles.focusHandle;
|
|
188227
|
-
return (undefined !== focusHandle && focusHandle.onModifierKeyTransition(wentDown, modifier, event) ?
|
|
188505
|
+
return (undefined !== focusHandle && focusHandle.onModifierKeyTransition(wentDown, modifier, event) ? _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes : _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No);
|
|
188228
188506
|
}
|
|
188229
188507
|
async onPostInstall() {
|
|
188230
188508
|
await super.onPostInstall();
|
|
188231
188509
|
await this.onReinitialize(); // Call onReinitialize now that tool is installed.
|
|
188232
188510
|
}
|
|
188233
188511
|
provideToolAssistance(mainInstrKey, additionalInstr) {
|
|
188234
|
-
const mainInstruction =
|
|
188512
|
+
const mainInstruction = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(this.iconSpec, ViewTool.translate(mainInstrKey));
|
|
188235
188513
|
const mouseInstructions = [];
|
|
188236
188514
|
const touchInstructions = [];
|
|
188237
|
-
const acceptMsg =
|
|
188238
|
-
const rejectMsg =
|
|
188239
|
-
touchInstructions.push(
|
|
188240
|
-
mouseInstructions.push(
|
|
188241
|
-
touchInstructions.push(
|
|
188242
|
-
mouseInstructions.push(
|
|
188515
|
+
const acceptMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate("ElementSet.Inputs.AcceptPoint");
|
|
188516
|
+
const rejectMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate("ElementSet.Inputs.Exit");
|
|
188517
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.OneTouchDrag, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
188518
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.LeftClick, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
188519
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.TwoTouchTap, rejectMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
188520
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.RightClick, rejectMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
188243
188521
|
if (undefined !== additionalInstr) {
|
|
188244
188522
|
for (const instr of additionalInstr) {
|
|
188245
|
-
if (
|
|
188523
|
+
if (_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch === instr.inputMethod)
|
|
188246
188524
|
touchInstructions.push(instr);
|
|
188247
188525
|
else
|
|
188248
188526
|
mouseInstructions.push(instr);
|
|
188249
188527
|
}
|
|
188250
188528
|
}
|
|
188251
188529
|
const sections = [];
|
|
188252
|
-
sections.push(
|
|
188253
|
-
sections.push(
|
|
188254
|
-
const instructions =
|
|
188255
|
-
|
|
188530
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(mouseInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
188531
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(touchInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
188532
|
+
const instructions = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstructions(mainInstruction, sections);
|
|
188533
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.notifications.setToolAssistance(instructions);
|
|
188256
188534
|
}
|
|
188257
188535
|
/** Called from [[ViewManip.onReinitialize]] to allow tools to establish the tool assistance for the first point. */
|
|
188258
188536
|
provideInitialToolAssistance() { }
|
|
@@ -188299,12 +188577,12 @@ class ViewManip extends ViewTool {
|
|
|
188299
188577
|
if (this.targetCenterValid) {
|
|
188300
188578
|
if (this.inHandleModify)
|
|
188301
188579
|
return;
|
|
188302
|
-
if (
|
|
188303
|
-
let tentPt =
|
|
188304
|
-
if (!
|
|
188580
|
+
if (_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tentativePoint.isActive) {
|
|
188581
|
+
let tentPt = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tentativePoint.getPoint();
|
|
188582
|
+
if (!_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tentativePoint.isSnapped) {
|
|
188305
188583
|
if (undefined === this._depthPreview && this.targetCenterLocked) {
|
|
188306
|
-
const ev = new
|
|
188307
|
-
|
|
188584
|
+
const ev = new _Tool__WEBPACK_IMPORTED_MODULE_17__.BeButtonEvent();
|
|
188585
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.fillEventFromCursorLocation(ev);
|
|
188308
188586
|
this.targetCenterLocked = false; // Depth preview won't be active (or requested) if target is currently locked...
|
|
188309
188587
|
this.pickDepthPoint(ev, true);
|
|
188310
188588
|
}
|
|
@@ -188312,12 +188590,12 @@ class ViewManip extends ViewTool {
|
|
|
188312
188590
|
tentPt = this._depthPreview.plane.getOriginRef(); // Prefer valid depth preview point to unsnapped tentative location...
|
|
188313
188591
|
}
|
|
188314
188592
|
this.setTargetCenterWorld(tentPt, true, false);
|
|
188315
|
-
|
|
188593
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tentativePoint.clear(true); // Clear tentative, there won't be a datapoint to accept...
|
|
188316
188594
|
}
|
|
188317
188595
|
return;
|
|
188318
188596
|
}
|
|
188319
|
-
if (
|
|
188320
|
-
return this.setTargetCenterWorld(
|
|
188597
|
+
if (_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tentativePoint.isActive)
|
|
188598
|
+
return this.setTargetCenterWorld(_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tentativePoint.getPoint(), true, false);
|
|
188321
188599
|
if (vp.viewCmdTargetCenter && this.isPointVisible(vp.viewCmdTargetCenter))
|
|
188322
188600
|
return this.setTargetCenterWorld(vp.viewCmdTargetCenter, true, true);
|
|
188323
188601
|
return this.setTargetCenterWorld(ViewManip.getDefaultTargetPointWorld(vp), false, false);
|
|
@@ -188403,7 +188681,7 @@ class ViewManip extends ViewTool {
|
|
|
188403
188681
|
if (viewport.view.isSpatialView() && animateFrustumChange && (viewport.viewingGlobe || !viewport.view.getIsViewingProject())) {
|
|
188404
188682
|
const cartographicCenter = viewport.view.rootToCartographic(range.center);
|
|
188405
188683
|
if (undefined !== cartographicCenter) {
|
|
188406
|
-
const cartographicArea = (0,
|
|
188684
|
+
const cartographicArea = (0,_ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.rangeToCartographicArea)(viewport.view, range);
|
|
188407
188685
|
(async () => {
|
|
188408
188686
|
await viewport.animateFlyoverToGlobalLocation({ center: cartographicCenter, area: cartographicArea }); // NOTE: Turns on camera...which is why we checked that it was already on...
|
|
188409
188687
|
viewport.viewCmdTargetCenter = undefined;
|
|
@@ -188425,17 +188703,17 @@ class ViewManip extends ViewTool {
|
|
|
188425
188703
|
setCameraLensAngle(lensAngle, retainEyePoint) {
|
|
188426
188704
|
const vp = this.viewport;
|
|
188427
188705
|
if (!vp)
|
|
188428
|
-
return
|
|
188706
|
+
return _ViewStatus__WEBPACK_IMPORTED_MODULE_14__.ViewStatus.InvalidViewport;
|
|
188429
188707
|
const view = vp.view;
|
|
188430
188708
|
if (!view.is3d() || !view.allow3dManipulations())
|
|
188431
|
-
return
|
|
188709
|
+
return _ViewStatus__WEBPACK_IMPORTED_MODULE_14__.ViewStatus.InvalidViewport;
|
|
188432
188710
|
const result = (retainEyePoint && view.isCameraOn) ?
|
|
188433
188711
|
view.lookAt({ eyePoint: view.getEyePoint(), targetPoint: view.getTargetPoint(), upVector: view.getYVector(), lensAngle }) :
|
|
188434
188712
|
vp.turnCameraOn(lensAngle);
|
|
188435
|
-
if (result !==
|
|
188713
|
+
if (result !== _ViewStatus__WEBPACK_IMPORTED_MODULE_14__.ViewStatus.Success)
|
|
188436
188714
|
return result;
|
|
188437
188715
|
vp.setupFromView();
|
|
188438
|
-
return
|
|
188716
|
+
return _ViewStatus__WEBPACK_IMPORTED_MODULE_14__.ViewStatus.Success;
|
|
188439
188717
|
}
|
|
188440
188718
|
enforceZUp(pivotPoint) {
|
|
188441
188719
|
const vp = this.viewport;
|
|
@@ -188574,7 +188852,7 @@ class HandleWithInertia extends ViewingToolHandle {
|
|
|
188574
188852
|
_end;
|
|
188575
188853
|
_inertiaVec;
|
|
188576
188854
|
doManipulation(ev, inDynamics) {
|
|
188577
|
-
if (
|
|
188855
|
+
if (_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.viewingInertia.enabled && !inDynamics && undefined !== this._inertiaVec)
|
|
188578
188856
|
return this.beginAnimation();
|
|
188579
188857
|
const vp = ev.viewport;
|
|
188580
188858
|
if (undefined === vp)
|
|
@@ -188589,7 +188867,7 @@ class HandleWithInertia extends ViewingToolHandle {
|
|
|
188589
188867
|
}
|
|
188590
188868
|
/** Set this handle to become the Viewport's animator */
|
|
188591
188869
|
beginAnimation() {
|
|
188592
|
-
this._duration =
|
|
188870
|
+
this._duration = _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.viewingInertia.duration;
|
|
188593
188871
|
if (this._duration.isTowardsFuture) { // ensure duration is towards future. Otherwise, don't start animation
|
|
188594
188872
|
this._end = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.fromNow(this._duration);
|
|
188595
188873
|
const vp = this.viewTool.viewport;
|
|
@@ -188623,7 +188901,7 @@ class HandleWithInertia extends ViewingToolHandle {
|
|
|
188623
188901
|
/** ViewingToolHandle for performing the "pan view" operation */
|
|
188624
188902
|
class ViewPan extends HandleWithInertia {
|
|
188625
188903
|
get handleType() { return ViewHandleType.Pan; }
|
|
188626
|
-
getHandleCursor() { return this.viewTool.inHandleModify ?
|
|
188904
|
+
getHandleCursor() { return this.viewTool.inHandleModify ? _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.grabbingCursor : _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.grabCursor; }
|
|
188627
188905
|
firstPoint(ev) {
|
|
188628
188906
|
this._inertiaVec = undefined;
|
|
188629
188907
|
const tool = this.viewTool;
|
|
@@ -188659,7 +188937,7 @@ class ViewPan extends HandleWithInertia {
|
|
|
188659
188937
|
const thisWorld = vp.npcToWorld(thisPtNpc);
|
|
188660
188938
|
const dist = thisWorld.vectorTo(lastWorld);
|
|
188661
188939
|
if (view.is3d()) {
|
|
188662
|
-
if (
|
|
188940
|
+
if (_ViewStatus__WEBPACK_IMPORTED_MODULE_14__.ViewStatus.Success !== (vp.viewingGlobe ? view.moveCameraGlobal(lastWorld, thisWorld) : view.moveCameraWorld(dist)))
|
|
188663
188941
|
return false;
|
|
188664
188942
|
this.changeFocusFromDepthPoint(); // if we have a valid depth point, set it focus distance from it
|
|
188665
188943
|
}
|
|
@@ -188675,7 +188953,7 @@ class ViewPan extends HandleWithInertia {
|
|
|
188675
188953
|
const vp = ev.viewport;
|
|
188676
188954
|
if (undefined === vp)
|
|
188677
188955
|
return false;
|
|
188678
|
-
return vp.isCameraOn &&
|
|
188956
|
+
return vp.isCameraOn && _Tool__WEBPACK_IMPORTED_MODULE_17__.CoordSource.User === ev.coordsFrom;
|
|
188679
188957
|
}
|
|
188680
188958
|
}
|
|
188681
188959
|
/** ViewingToolHandle for performing the "rotate view" operation */
|
|
@@ -188684,7 +188962,7 @@ class ViewRotate extends HandleWithInertia {
|
|
|
188684
188962
|
_activeFrustum = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Frustum();
|
|
188685
188963
|
_anchorPtNpc = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d();
|
|
188686
188964
|
get handleType() { return ViewHandleType.Rotate; }
|
|
188687
|
-
getHandleCursor() { return
|
|
188965
|
+
getHandleCursor() { return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.rotateCursor; }
|
|
188688
188966
|
testHandleForHit(_ptScreen, out) {
|
|
188689
188967
|
out.distance = 0.0;
|
|
188690
188968
|
out.priority = 100 /* ViewManipPriority.Medium */; // Always prefer over pan handle which is only force enabled by IdleTool middle button action...
|
|
@@ -188701,7 +188979,7 @@ class ViewRotate extends HandleWithInertia {
|
|
|
188701
188979
|
tool.setTargetCenterWorld(this._depthPoint, false, false);
|
|
188702
188980
|
vp.worldToNpc(ev.rawPoint, this._anchorPtNpc);
|
|
188703
188981
|
this._lastPtNpc.setFrom(this._anchorPtNpc);
|
|
188704
|
-
vp.getFrustum(
|
|
188982
|
+
vp.getFrustum(_CoordSystem__WEBPACK_IMPORTED_MODULE_5__.CoordSystem.World, false, this._activeFrustum);
|
|
188705
188983
|
this._frustum.setFrom(this._activeFrustum);
|
|
188706
188984
|
tool.beginDynamicUpdate();
|
|
188707
188985
|
this.viewTool.provideToolAssistance("Rotate.Prompts.NextPoint");
|
|
@@ -188714,7 +188992,7 @@ class ViewRotate extends HandleWithInertia {
|
|
|
188714
188992
|
return false;
|
|
188715
188993
|
if (this._anchorPtNpc.isAlmostEqual(ptNpc, 1.0e-2)) // too close to anchor pt
|
|
188716
188994
|
ptNpc.setFrom(this._anchorPtNpc);
|
|
188717
|
-
const currentFrustum = vp.getFrustum(
|
|
188995
|
+
const currentFrustum = vp.getFrustum(_CoordSystem__WEBPACK_IMPORTED_MODULE_5__.CoordSystem.World, false);
|
|
188718
188996
|
const frustumChange = !currentFrustum.equals(this._activeFrustum);
|
|
188719
188997
|
if (frustumChange)
|
|
188720
188998
|
this._frustum.setFrom(currentFrustum);
|
|
@@ -188744,7 +189022,7 @@ class ViewRotate extends HandleWithInertia {
|
|
|
188744
189022
|
const xDelta = (currPt.x - firstPt.x);
|
|
188745
189023
|
const yDelta = (currPt.y - firstPt.y);
|
|
188746
189024
|
// Movement in screen x == rotation about drawing Z (preserve up) or rotation about screen Y...
|
|
188747
|
-
const xAxis =
|
|
189025
|
+
const xAxis = _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.preserveWorldUp && !vp.viewingGlobe ? (undefined !== this._depthPoint ? vp.view.getUpVector(this._depthPoint) : _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ()) : vp.rotation.getRow(1);
|
|
188748
189026
|
// Movement in screen y == rotation about screen X...
|
|
188749
189027
|
const yAxis = vp.rotation.getRow(0);
|
|
188750
189028
|
const xRMatrix = (xDelta ? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d.createRotationAroundVector(xAxis, _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Angle.createRadians(Math.PI / (viewRect.width / xDelta))) : undefined) ?? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d.identity;
|
|
@@ -188773,7 +189051,7 @@ class ViewRotate extends HandleWithInertia {
|
|
|
188773
189051
|
const tool = this.viewTool;
|
|
188774
189052
|
if (tool.targetCenterLocked || tool.inHandleModify) {
|
|
188775
189053
|
ev.point = tool.targetCenterWorld;
|
|
188776
|
-
ev.coordsFrom =
|
|
189054
|
+
ev.coordsFrom = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoordSource.Precision; // WheelEventProcessor.doZoom checks this to decide whether to use raw or adjusted point...
|
|
188777
189055
|
}
|
|
188778
189056
|
return false;
|
|
188779
189057
|
}
|
|
@@ -188804,7 +189082,7 @@ class ViewLook extends ViewingToolHandle {
|
|
|
188804
189082
|
_rotation = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d();
|
|
188805
189083
|
_frustum = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Frustum();
|
|
188806
189084
|
get handleType() { return ViewHandleType.Look; }
|
|
188807
|
-
getHandleCursor() { return
|
|
189085
|
+
getHandleCursor() { return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.lookCursor; }
|
|
188808
189086
|
testHandleForHit(_ptScreen, out) {
|
|
188809
189087
|
out.distance = 0.0;
|
|
188810
189088
|
out.priority = 100 /* ViewManipPriority.Medium */; // Always prefer over pan handle which is only force enabled by IdleTool middle button action...
|
|
@@ -188893,7 +189171,7 @@ class AnimatedHandle extends ViewingToolHandle {
|
|
|
188893
189171
|
interrupt() { }
|
|
188894
189172
|
animate() {
|
|
188895
189173
|
// Don't continue animation when mouse is outside view, and don't jump if it returns...
|
|
188896
|
-
if (undefined !==
|
|
189174
|
+
if (undefined !== _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.cursorView)
|
|
188897
189175
|
return true;
|
|
188898
189176
|
this.getElapsedTime();
|
|
188899
189177
|
return false;
|
|
@@ -189007,7 +189285,7 @@ class ViewScroll extends AnimatedHandle {
|
|
|
189007
189285
|
const dist = this.getDirection();
|
|
189008
189286
|
if (undefined === dist)
|
|
189009
189287
|
return false;
|
|
189010
|
-
dist.scaleInPlace(
|
|
189288
|
+
dist.scaleInPlace(_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.scrollSpeed * this.getElapsedTime());
|
|
189011
189289
|
const tool = this.viewTool;
|
|
189012
189290
|
const viewport = tool.viewport;
|
|
189013
189291
|
if (undefined === viewport)
|
|
@@ -189035,7 +189313,7 @@ class ViewScroll extends AnimatedHandle {
|
|
|
189035
189313
|
const vp = ev.viewport;
|
|
189036
189314
|
if (undefined === vp)
|
|
189037
189315
|
return false;
|
|
189038
|
-
return vp.isCameraOn &&
|
|
189316
|
+
return vp.isCameraOn && _Tool__WEBPACK_IMPORTED_MODULE_17__.CoordSource.User === ev.coordsFrom;
|
|
189039
189317
|
}
|
|
189040
189318
|
}
|
|
189041
189319
|
/** ViewingToolHandle for performing the "zoom view" operation */
|
|
@@ -189048,7 +189326,7 @@ class ViewZoom extends ViewingToolHandle {
|
|
|
189048
189326
|
_startFrust;
|
|
189049
189327
|
_lastZoomRatio = 1.0;
|
|
189050
189328
|
get handleType() { return ViewHandleType.Zoom; }
|
|
189051
|
-
getHandleCursor() { return
|
|
189329
|
+
getHandleCursor() { return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.zoomCursor; }
|
|
189052
189330
|
testHandleForHit(_ptScreen, out) {
|
|
189053
189331
|
out.distance = 0.0;
|
|
189054
189332
|
out.priority = 100 /* ViewManipPriority.Medium */; // Always prefer over pan handle which is only force enabled by IdleTool middle button action...
|
|
@@ -189138,7 +189416,7 @@ class ViewZoom extends ViewingToolHandle {
|
|
|
189138
189416
|
const dist = this._anchorPtNpc.minus(thisPtNpc);
|
|
189139
189417
|
dist.z = 0.0;
|
|
189140
189418
|
dist.x = 0.0;
|
|
189141
|
-
let zoomRatio = 1.0 + (dist.magnitude() *
|
|
189419
|
+
let zoomRatio = 1.0 + (dist.magnitude() * _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.zoomSpeed);
|
|
189142
189420
|
if (dist.y > 0)
|
|
189143
189421
|
zoomRatio = 1.0 / zoomRatio;
|
|
189144
189422
|
this._lastZoomRatio = zoomRatio;
|
|
@@ -189151,18 +189429,18 @@ class ViewZoom extends ViewingToolHandle {
|
|
|
189151
189429
|
_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Transform.createTranslation(cameraOffset, transform);
|
|
189152
189430
|
}
|
|
189153
189431
|
frustum.transformBy(transform, frustum);
|
|
189154
|
-
if (
|
|
189432
|
+
if (_ViewStatus__WEBPACK_IMPORTED_MODULE_14__.ViewStatus.Success !== view.setupFromFrustum(frustum))
|
|
189155
189433
|
return false;
|
|
189156
189434
|
if (view.is3d() && view.isCameraOn)
|
|
189157
189435
|
this.changeFocusFromDepthPoint(); // if we have a valid depth point, set it focus distance from it
|
|
189158
|
-
return
|
|
189436
|
+
return _ViewStatus__WEBPACK_IMPORTED_MODULE_14__.ViewStatus.Success === viewport.setupFromView();
|
|
189159
189437
|
}
|
|
189160
189438
|
/** @internal */
|
|
189161
189439
|
needDepthPoint(ev, _isPreview) {
|
|
189162
189440
|
const vp = ev.viewport;
|
|
189163
189441
|
if (undefined === vp)
|
|
189164
189442
|
return false;
|
|
189165
|
-
return vp.isCameraOn &&
|
|
189443
|
+
return vp.isCameraOn && _Tool__WEBPACK_IMPORTED_MODULE_17__.CoordSource.User === ev.coordsFrom;
|
|
189166
189444
|
}
|
|
189167
189445
|
}
|
|
189168
189446
|
/** @internal */
|
|
@@ -189324,11 +189602,11 @@ class NavigateMotion {
|
|
|
189324
189602
|
/** ViewingToolHandle for performing the Walk and Fly operations */
|
|
189325
189603
|
class ViewNavigate extends AnimatedHandle {
|
|
189326
189604
|
_initialized = false;
|
|
189327
|
-
getHandleCursor() { return
|
|
189328
|
-
getMaxLinearVelocity() { return
|
|
189605
|
+
getHandleCursor() { return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.walkCursor; }
|
|
189606
|
+
getMaxLinearVelocity() { return _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkVelocity; }
|
|
189329
189607
|
getMaxAngularVelocity() { return Math.PI / 4; }
|
|
189330
189608
|
getNavigateMode() {
|
|
189331
|
-
const state =
|
|
189609
|
+
const state = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.currentInputState;
|
|
189332
189610
|
return (state.isShiftDown || (false === this.viewTool.viewport?.isCameraOn)) ? 0 /* NavigateMode.Pan */ :
|
|
189333
189611
|
state.isControlDown ? 1 /* NavigateMode.Look */ : 2 /* NavigateMode.Travel */;
|
|
189334
189612
|
}
|
|
@@ -189359,7 +189637,7 @@ class ViewNavigate extends AnimatedHandle {
|
|
|
189359
189637
|
const view = vp.view;
|
|
189360
189638
|
if (!view.allow3dManipulations())
|
|
189361
189639
|
return;
|
|
189362
|
-
const walkAngle =
|
|
189640
|
+
const walkAngle = _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkCameraAngle;
|
|
189363
189641
|
if (!tool.lensAngleMatches(walkAngle, _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Angle.degreesToRadians(15.)) || !tool.isZUp) {
|
|
189364
189642
|
// This turns on the camera if its not already on. It also assures the camera is centered. Obviously this is required if
|
|
189365
189643
|
// the camera is not on or the lens angle is not what we want. We also want to do it if Z will be
|
|
@@ -189367,7 +189645,7 @@ class ViewNavigate extends AnimatedHandle {
|
|
|
189367
189645
|
// reasonable the target point may be far beyond anything relevant.
|
|
189368
189646
|
tool.setCameraLensAngle(walkAngle, tool.lensAngleMatches(walkAngle, _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Angle.degreesToRadians(45.)));
|
|
189369
189647
|
}
|
|
189370
|
-
if (
|
|
189648
|
+
if (_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkEnforceZUp)
|
|
189371
189649
|
tool.enforceZUp(view.getTargetPoint());
|
|
189372
189650
|
vp.animateFrustumChange();
|
|
189373
189651
|
}
|
|
@@ -189416,7 +189694,7 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189416
189694
|
this._navigateMotion = new NavigateMotion(this.viewTool.viewport);
|
|
189417
189695
|
}
|
|
189418
189696
|
get handleType() { return ViewHandleType.LookAndMove; }
|
|
189419
|
-
getHandleCursor() { return
|
|
189697
|
+
getHandleCursor() { return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.lookCursor; }
|
|
189420
189698
|
testHandleForHit(_ptScreen, out) {
|
|
189421
189699
|
out.distance = 0.0;
|
|
189422
189700
|
out.priority = 100 /* ViewManipPriority.Medium */; // Always prefer over pan handle which is only force enabled by IdleTool middle button action...
|
|
@@ -189463,7 +189741,7 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189463
189741
|
}
|
|
189464
189742
|
return;
|
|
189465
189743
|
}
|
|
189466
|
-
if (!
|
|
189744
|
+
if (!_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkRequestPointerLock)
|
|
189467
189745
|
return;
|
|
189468
189746
|
const vp = this.viewTool.viewport;
|
|
189469
189747
|
if (undefined === vp)
|
|
@@ -189476,14 +189754,14 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189476
189754
|
}
|
|
189477
189755
|
if (undefined === this._pointerLockClickEngagementListener) {
|
|
189478
189756
|
this._pointerLockClickEngagementListener = () => {
|
|
189479
|
-
if (1 === this.viewTool.nPts && undefined !==
|
|
189757
|
+
if (1 === this.viewTool.nPts && undefined !== _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.cursorView)
|
|
189480
189758
|
void vp.canvas.requestPointerLock();
|
|
189481
189759
|
};
|
|
189482
189760
|
document.addEventListener("click", this._pointerLockClickEngagementListener, false);
|
|
189483
189761
|
}
|
|
189484
189762
|
if (undefined === this._pointerLockKeyEngagementListener) {
|
|
189485
189763
|
this._pointerLockKeyEngagementListener = (ev) => {
|
|
189486
|
-
if (0 === this.viewTool.nPts && undefined !==
|
|
189764
|
+
if (0 === this.viewTool.nPts && undefined !== _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.cursorView && this.isNavigationKey(ev))
|
|
189487
189765
|
void vp.canvas.requestPointerLock();
|
|
189488
189766
|
};
|
|
189489
189767
|
document.addEventListener("keydown", this._pointerLockKeyEngagementListener, false);
|
|
@@ -189506,7 +189784,7 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189506
189784
|
const vp = this.viewTool.viewport;
|
|
189507
189785
|
if (undefined === vp || !vp.isCameraOn)
|
|
189508
189786
|
return true;
|
|
189509
|
-
if (
|
|
189787
|
+
if (_Tool__WEBPACK_IMPORTED_MODULE_17__.InputSource.Mouse === ev.inputSource) {
|
|
189510
189788
|
this._deadZone = Math.pow(vp.pixelsFromInches(0.5), 2); // Only used if pointer lock isn't supported...
|
|
189511
189789
|
}
|
|
189512
189790
|
else {
|
|
@@ -189516,7 +189794,7 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189516
189794
|
return true;
|
|
189517
189795
|
}
|
|
189518
189796
|
doManipulation(ev) {
|
|
189519
|
-
if (
|
|
189797
|
+
if (_Tool__WEBPACK_IMPORTED_MODULE_17__.InputSource.Mouse === ev.inputSource)
|
|
189520
189798
|
this._lastMovement = this._havePointerLock ? ev.movement : undefined;
|
|
189521
189799
|
else
|
|
189522
189800
|
this._lastMovement = this._lastPtView.vectorTo(ev.viewPoint).scale(2.0); // ev.movement isn't available for button event created from touch event...
|
|
@@ -189525,9 +189803,9 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189525
189803
|
}
|
|
189526
189804
|
getMaxLinearVelocity() {
|
|
189527
189805
|
const maxLinearVelocity = super.getMaxLinearVelocity();
|
|
189528
|
-
if (0 ===
|
|
189806
|
+
if (0 === _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkVelocityChange)
|
|
189529
189807
|
return (this._touchSpeedUp ? maxLinearVelocity * 2.0 : maxLinearVelocity);
|
|
189530
|
-
const speedFactor = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.clamp(
|
|
189808
|
+
const speedFactor = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.clamp(_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkVelocityChange + (_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkVelocityChange > 0 ? 1 : -1), -10, 10);
|
|
189531
189809
|
const speedMultiplier = (speedFactor >= 0 ? speedFactor : 1 / Math.abs(speedFactor));
|
|
189532
189810
|
return maxLinearVelocity * speedMultiplier;
|
|
189533
189811
|
}
|
|
@@ -189587,9 +189865,9 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189587
189865
|
pts[1] = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point2d(pts[0].x + 1, vp.viewRect.bottom);
|
|
189588
189866
|
const range = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range2d.createArray(pts);
|
|
189589
189867
|
let detectStepUp = false;
|
|
189590
|
-
const rect = new
|
|
189868
|
+
const rect = new _common_ViewRect__WEBPACK_IMPORTED_MODULE_12__.ViewRect();
|
|
189591
189869
|
rect.initFromRange(range);
|
|
189592
|
-
vp.readPixels(rect,
|
|
189870
|
+
vp.readPixels(rect, _render_Pixel__WEBPACK_IMPORTED_MODULE_8__.Pixel.Selector.GeometryAndDistance, (pixels) => {
|
|
189593
189871
|
if (undefined === pixels)
|
|
189594
189872
|
return;
|
|
189595
189873
|
const sRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range2d.createNull();
|
|
@@ -189605,9 +189883,9 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189605
189883
|
continue;
|
|
189606
189884
|
if (0 === contourLine.numPoints()) {
|
|
189607
189885
|
if (undefined === this._lastReference) {
|
|
189608
|
-
const refPt = (
|
|
189886
|
+
const refPt = (_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkDetectFloor ? eyePt.plusScaled(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ(), -_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkEyeHeight) : hitPointWorld);
|
|
189609
189887
|
this._lastReference = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Plane3dByOriginAndUnitNormal.create(refPt, _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ());
|
|
189610
|
-
detectStepUp =
|
|
189888
|
+
detectStepUp = _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkDetectFloor;
|
|
189611
189889
|
}
|
|
189612
189890
|
else if (undefined !== this._lastContour && this._lastContour.numPoints() > 1) {
|
|
189613
189891
|
let fractLo, fractHi;
|
|
@@ -189619,12 +189897,12 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189619
189897
|
const resultHi = [];
|
|
189620
189898
|
this._lastContour.appendPlaneIntersectionPoints(yPlaneHi, resultHi);
|
|
189621
189899
|
for (const intersectionHi of resultHi) {
|
|
189622
|
-
if ((undefined === fractHi || intersectionHi.fraction < fractHi) && intersectionHi.point.distance(hitPointWorld) <
|
|
189900
|
+
if ((undefined === fractHi || intersectionHi.fraction < fractHi) && intersectionHi.point.distance(hitPointWorld) < _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkEyeHeight)
|
|
189623
189901
|
fractHi = intersectionHi.fraction;
|
|
189624
189902
|
}
|
|
189625
189903
|
if (undefined !== fractHi) {
|
|
189626
189904
|
const yPlaneLo = yPlaneHi.clone();
|
|
189627
|
-
yPlaneLo.getOriginRef().addScaledInPlace(yPlaneLo.getNormalRef(),
|
|
189905
|
+
yPlaneLo.getOriginRef().addScaledInPlace(yPlaneLo.getNormalRef(), _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkEyeHeight * 2);
|
|
189628
189906
|
const resultLo = [];
|
|
189629
189907
|
this._lastContour.appendPlaneIntersectionPoints(yPlaneLo, resultLo);
|
|
189630
189908
|
for (const intersectionLo of resultLo) {
|
|
@@ -189668,7 +189946,7 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189668
189946
|
else if (detectStepUp && undefined !== this._lastReference) {
|
|
189669
189947
|
const start = contourLine.startPoint();
|
|
189670
189948
|
const forwardDir = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ().crossProduct(vp.view.getXVector());
|
|
189671
|
-
const stepPlane = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Plane3dByOriginAndUnitNormal.create(start.plusScaled(forwardDir,
|
|
189949
|
+
const stepPlane = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Plane3dByOriginAndUnitNormal.create(start.plusScaled(forwardDir, _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkStepHeight), forwardDir);
|
|
189672
189950
|
const resultStep = [];
|
|
189673
189951
|
if (undefined !== stepPlane)
|
|
189674
189952
|
contourLine.appendPlaneIntersectionPoints(stepPlane, resultStep);
|
|
@@ -189693,11 +189971,11 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189693
189971
|
}
|
|
189694
189972
|
}
|
|
189695
189973
|
this._currentContour = contourLine;
|
|
189696
|
-
if (
|
|
189974
|
+
if (_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkDetectFloor)
|
|
189697
189975
|
this._lastContour = this._currentContour;
|
|
189698
189976
|
}
|
|
189699
189977
|
checkForCollision(vp, motion, positionInput) {
|
|
189700
|
-
if (!
|
|
189978
|
+
if (!_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkCollisions)
|
|
189701
189979
|
return 0;
|
|
189702
189980
|
const view = vp.view;
|
|
189703
189981
|
if (!view.is3d() || !view.isCameraOn)
|
|
@@ -189743,7 +190021,7 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189743
190021
|
return 1; // Stay put, high barrier...
|
|
189744
190022
|
}
|
|
189745
190023
|
}
|
|
189746
|
-
if (!
|
|
190024
|
+
if (!_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkDetectFloor || undefined === this._lastReference)
|
|
189747
190025
|
return 0;
|
|
189748
190026
|
const forwardDir = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ().crossProduct(vp.view.getXVector());
|
|
189749
190027
|
const planeZ = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Plane3dByOriginAndUnitNormal.create(newEyePt, forwardDir);
|
|
@@ -189762,7 +190040,7 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189762
190040
|
maintainHeight.setFrom(offset);
|
|
189763
190041
|
}
|
|
189764
190042
|
}
|
|
189765
|
-
if (maintainHeight.magnitude() >=
|
|
190043
|
+
if (maintainHeight.magnitude() >= _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkStepHeight && maintainHeight.dotProduct(this._lastReference.getNormalRef()) > 0)
|
|
189766
190044
|
return 2; // Stay put, low barrier...
|
|
189767
190045
|
const moveTransform = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Transform.createTranslation(maintainHeight);
|
|
189768
190046
|
motion.transform.multiplyTransformTransform(moveTransform, motion.transform);
|
|
@@ -189788,9 +190066,9 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189788
190066
|
if (0.0 === angularInput.magnitude() && 0.0 === positionInput.magnitude() && undefined === this._lastMovement)
|
|
189789
190067
|
return;
|
|
189790
190068
|
this.requestPointerLock(false); // Ignore engagement events after modification starts (either from mouse or keys)...
|
|
189791
|
-
const current =
|
|
189792
|
-
if (!this._havePointerLock &&
|
|
189793
|
-
current.onStartDrag(
|
|
190069
|
+
const current = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.currentInputState;
|
|
190070
|
+
if (!this._havePointerLock && _Tool__WEBPACK_IMPORTED_MODULE_17__.InputSource.Mouse === current.inputSource && !current.isDragging(_Tool__WEBPACK_IMPORTED_MODULE_17__.BeButton.Data))
|
|
190071
|
+
current.onStartDrag(_Tool__WEBPACK_IMPORTED_MODULE_17__.BeButton.Data); // Treat data down -> navigate key -> data up the same as a drag...
|
|
189794
190072
|
if (undefined !== this._lastMovement) {
|
|
189795
190073
|
if (motion.moveAndMouseLook(this._accumulator, positionInput, this._lastMovement, true))
|
|
189796
190074
|
this._lastMovement = undefined;
|
|
@@ -189817,15 +190095,15 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189817
190095
|
this._lastPtView.setFrom(this._anchorPtView); // Display indicator in the middle of the view...
|
|
189818
190096
|
}
|
|
189819
190097
|
toggleCollisions() {
|
|
189820
|
-
|
|
190098
|
+
_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkCollisions = !_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkCollisions;
|
|
189821
190099
|
this._lastCollision = 0;
|
|
189822
190100
|
this._lastReference = this._lastContour = this._currentContour = undefined;
|
|
189823
190101
|
if (this.viewTool.viewport)
|
|
189824
190102
|
this.viewTool.viewport.invalidateDecorations();
|
|
189825
190103
|
}
|
|
189826
190104
|
toggleDetectFloor() {
|
|
189827
|
-
|
|
189828
|
-
if (
|
|
190105
|
+
_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkDetectFloor = !_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkDetectFloor;
|
|
190106
|
+
if (_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkDetectFloor && !_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkCollisions)
|
|
189829
190107
|
return this.toggleCollisions();
|
|
189830
190108
|
this._lastReference = this._lastContour = this._currentContour = undefined;
|
|
189831
190109
|
if (this.viewTool.viewport)
|
|
@@ -189833,9 +190111,9 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189833
190111
|
}
|
|
189834
190112
|
changeWalkVelocity(increase) {
|
|
189835
190113
|
if (undefined === increase)
|
|
189836
|
-
|
|
190114
|
+
_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkVelocityChange = 0;
|
|
189837
190115
|
else
|
|
189838
|
-
|
|
190116
|
+
_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkVelocityChange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.clamp(_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkVelocityChange + (increase ? 1 : -1), -9, 9);
|
|
189839
190117
|
if (this.viewTool.viewport)
|
|
189840
190118
|
this.viewTool.viewport.invalidateDecorations();
|
|
189841
190119
|
}
|
|
@@ -189876,7 +190154,7 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189876
190154
|
if (0 !== this.viewTool.nPts || undefined === vp)
|
|
189877
190155
|
return false;
|
|
189878
190156
|
const pt = vp.view.getTargetPoint();
|
|
189879
|
-
const ev = new
|
|
190157
|
+
const ev = new _Tool__WEBPACK_IMPORTED_MODULE_17__.BeButtonEvent({ point: pt, rawPoint: pt, viewPoint: vp.worldToView(pt), viewport: vp, inputSource: _Tool__WEBPACK_IMPORTED_MODULE_17__.InputSource.Mouse, isDown: true });
|
|
189880
190158
|
this.viewTool.changeViewport(ev.viewport);
|
|
189881
190159
|
if (!this.viewTool.processFirstPoint(ev))
|
|
189882
190160
|
return false;
|
|
@@ -189966,7 +190244,7 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189966
190244
|
getTouchStartPosition(touchStart) {
|
|
189967
190245
|
if (undefined === touchStart || undefined === touchStart.viewport)
|
|
189968
190246
|
return undefined;
|
|
189969
|
-
return
|
|
190247
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.getTouchPosition(touchStart.touchEvent.changedTouches[0], touchStart.viewport);
|
|
189970
190248
|
}
|
|
189971
190249
|
getTouchOffset(touchStart, radius) {
|
|
189972
190250
|
const offset = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector2d.create();
|
|
@@ -189977,12 +190255,12 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
189977
190255
|
return offset;
|
|
189978
190256
|
if (undefined === touchStart?.viewport)
|
|
189979
190257
|
return offset;
|
|
189980
|
-
const lastTouch =
|
|
190258
|
+
const lastTouch = _Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.findTouchById(this._touchLast.touchEvent.targetTouches, touchStart.touchEvent.changedTouches[0].identifier);
|
|
189981
190259
|
if (undefined === lastTouch)
|
|
189982
190260
|
return offset;
|
|
189983
190261
|
const minOffsetRadius = Math.floor(radius * 0.1) + 0.5;
|
|
189984
190262
|
const maxOffsetRadius = Math.floor(radius * 1.2) + 0.5;
|
|
189985
|
-
const lastPos =
|
|
190263
|
+
const lastPos = _Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.getTouchPosition(lastTouch, touchStart.viewport);
|
|
189986
190264
|
const lastVec = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector2d.createStartEnd(position, lastPos);
|
|
189987
190265
|
if (lastVec.magnitude() > maxOffsetRadius)
|
|
189988
190266
|
lastVec.scaleToLength(maxOffsetRadius, lastVec);
|
|
@@ -190012,11 +190290,11 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
190012
190290
|
}
|
|
190013
190291
|
onTouchEnd(ev) {
|
|
190014
190292
|
let changed = false;
|
|
190015
|
-
if (undefined !== this._touchStartL && undefined !==
|
|
190293
|
+
if (undefined !== this._touchStartL && undefined !== _Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.findTouchById(ev.touchEvent.changedTouches, this._touchStartL.touchEvent.changedTouches[0].identifier)) {
|
|
190016
190294
|
this._touchStartL = undefined;
|
|
190017
190295
|
changed = true;
|
|
190018
190296
|
}
|
|
190019
|
-
if (undefined !== this._touchStartR && undefined !==
|
|
190297
|
+
if (undefined !== this._touchStartR && undefined !== _Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.findTouchById(ev.touchEvent.changedTouches, this._touchStartR.touchEvent.changedTouches[0].identifier)) {
|
|
190020
190298
|
this._touchStartR = undefined;
|
|
190021
190299
|
changed = true;
|
|
190022
190300
|
}
|
|
@@ -190037,9 +190315,9 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
190037
190315
|
if (undefined === ev.viewport || !this.viewTool.inDynamicUpdate || (undefined === this._touchStartL && undefined === this._touchStartR))
|
|
190038
190316
|
return false;
|
|
190039
190317
|
let changed = false;
|
|
190040
|
-
if (undefined !== this._touchStartL && undefined !==
|
|
190318
|
+
if (undefined !== this._touchStartL && undefined !== _Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.findTouchById(ev.touchEvent.changedTouches, this._touchStartL.touchEvent.changedTouches[0].identifier))
|
|
190041
190319
|
changed = true;
|
|
190042
|
-
if (undefined !== this._touchStartR && undefined !==
|
|
190320
|
+
if (undefined !== this._touchStartR && undefined !== _Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.findTouchById(ev.touchEvent.changedTouches, this._touchStartR.touchEvent.changedTouches[0].identifier))
|
|
190043
190321
|
changed = true;
|
|
190044
190322
|
if (changed) {
|
|
190045
190323
|
this._touchLast = ev;
|
|
@@ -190070,7 +190348,7 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
190070
190348
|
super.drawHandle(context, hasFocus);
|
|
190071
190349
|
if (!hasFocus || context.viewport !== this.viewTool.viewport)
|
|
190072
190350
|
return;
|
|
190073
|
-
if (
|
|
190351
|
+
if (_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkCollisions && this.viewTool.inDynamicUpdate) {
|
|
190074
190352
|
const position = this._anchorPtView.clone();
|
|
190075
190353
|
position.x = Math.floor(position.x) + 0.5;
|
|
190076
190354
|
position.y = Math.floor(position.y) + 0.5;
|
|
@@ -190100,7 +190378,7 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
190100
190378
|
ctx.lineWidth = 1;
|
|
190101
190379
|
addArrow(0);
|
|
190102
190380
|
addArrow(Math.PI);
|
|
190103
|
-
if (
|
|
190381
|
+
if (_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkDetectFloor) {
|
|
190104
190382
|
ctx.strokeStyle = "black";
|
|
190105
190383
|
ctx.lineWidth = 5;
|
|
190106
190384
|
addArrow(-Math.PI / 2);
|
|
@@ -190111,9 +190389,9 @@ class ViewLookAndMove extends ViewNavigate {
|
|
|
190111
190389
|
};
|
|
190112
190390
|
context.addCanvasDecoration({ position, drawDecoration: drawCollisionArrows });
|
|
190113
190391
|
}
|
|
190114
|
-
if ((0 !==
|
|
190392
|
+
if ((0 !== _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkVelocityChange || this._touchSpeedUp) && this.viewTool.inDynamicUpdate) {
|
|
190115
190393
|
const arrowSize = 12;
|
|
190116
|
-
const speedUp = (
|
|
190394
|
+
const speedUp = (_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkVelocityChange > 0 || this._touchSpeedUp ? true : false);
|
|
190117
190395
|
const position = this._anchorPtView.clone();
|
|
190118
190396
|
position.x = Math.floor(position.x) + 0.5;
|
|
190119
190397
|
position.y = Math.floor(position.y + (arrowSize / 3)) + 0.5;
|
|
@@ -190330,7 +190608,7 @@ class LookAndMoveTool extends ViewManip {
|
|
|
190330
190608
|
static toolId = "View.LookAndMove";
|
|
190331
190609
|
static iconSpec = "icon-walk";
|
|
190332
190610
|
constructor(vp, oneShot = false, isDraggingRequired = false) {
|
|
190333
|
-
const viewport = (undefined === vp ?
|
|
190611
|
+
const viewport = (undefined === vp ? _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.selectedView : vp); // Need vp to enable camera/check lens in onReinitialize...
|
|
190334
190612
|
super(viewport, ViewHandleType.LookAndMove | ViewHandleType.Pan, oneShot, isDraggingRequired);
|
|
190335
190613
|
}
|
|
190336
190614
|
get isExitAllowedOnReinitialize() { return true; }
|
|
@@ -190340,31 +190618,31 @@ class LookAndMoveTool extends ViewManip {
|
|
|
190340
190618
|
focusHome();
|
|
190341
190619
|
}
|
|
190342
190620
|
provideToolAssistance(mainInstrKey) {
|
|
190343
|
-
const mainInstruction =
|
|
190621
|
+
const mainInstruction = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(this.iconSpec, ViewTool.translate(mainInstrKey));
|
|
190344
190622
|
const mouseInstructions = [];
|
|
190345
190623
|
const touchInstructions = [];
|
|
190346
|
-
const acceptMsg = this.inDynamicUpdate ?
|
|
190347
|
-
const rejectMsg =
|
|
190348
|
-
mouseInstructions.push(
|
|
190349
|
-
mouseInstructions.push(
|
|
190350
|
-
mouseInstructions.push(
|
|
190351
|
-
mouseInstructions.push(
|
|
190352
|
-
mouseInstructions.push(
|
|
190353
|
-
mouseInstructions.push(
|
|
190354
|
-
mouseInstructions.push(
|
|
190355
|
-
mouseInstructions.push(
|
|
190356
|
-
mouseInstructions.push(
|
|
190357
|
-
touchInstructions.push(
|
|
190358
|
-
touchInstructions.push(
|
|
190359
|
-
touchInstructions.push(
|
|
190360
|
-
touchInstructions.push(
|
|
190361
|
-
touchInstructions.push(
|
|
190362
|
-
touchInstructions.push(
|
|
190624
|
+
const acceptMsg = this.inDynamicUpdate ? _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate("ElementSet.Inputs.AcceptPoint") : ViewTool.translate("LookAndMove.Inputs.AcceptLookPoint");
|
|
190625
|
+
const rejectMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate("ElementSet.Inputs.Exit");
|
|
190626
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.LeftClick, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
190627
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.RightClick, rejectMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
190628
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createKeyboardInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createKeyboardInfo(["W"], ["A", "S", "D"]), ViewTool.translate("LookAndMove.Inputs.WalkKeys"), false));
|
|
190629
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createKeyboardInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.arrowKeyboardInfo, ViewTool.translate("LookAndMove.Inputs.WalkKeys"), false));
|
|
190630
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createKeyboardInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createKeyboardInfo(["Q", "E"]), ViewTool.translate("LookAndMove.Inputs.ElevateKeys"), false));
|
|
190631
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createKeyboardInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createKeyboardInfo(["\u21de", "\u21df"]), ViewTool.translate("LookAndMove.Inputs.ElevateKeys"), false));
|
|
190632
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createKeyboardInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createKeyboardInfo(["C", "Z"]), ViewTool.translate("LookAndMove.Inputs.CollideKeys"), false));
|
|
190633
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createKeyboardInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createKeyboardInfo(["+", "-"]), ViewTool.translate("LookAndMove.Inputs.VelocityChange"), false));
|
|
190634
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.MouseWheel, ViewTool.translate("LookAndMove.Inputs.VelocityChange"), false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
190635
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.TouchCursorDrag, ViewTool.translate("LookAndMove.Inputs.TouchZoneLL"), false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
190636
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.TouchCursorDrag, ViewTool.translate("LookAndMove.Inputs.TouchZoneLR"), false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
190637
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.OneTouchTap, ViewTool.translate("LookAndMove.Inputs.TouchTapLL"), false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
190638
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.OneTouchTap, ViewTool.translate("LookAndMove.Inputs.TouchTapLR"), false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
190639
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.OneTouchDrag, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
190640
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.TwoTouchTap, rejectMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
190363
190641
|
const sections = [];
|
|
190364
|
-
sections.push(
|
|
190365
|
-
sections.push(
|
|
190366
|
-
const instructions =
|
|
190367
|
-
|
|
190642
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(mouseInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
190643
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(touchInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
190644
|
+
const instructions = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstructions(mainInstruction, sections);
|
|
190645
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.notifications.setToolAssistance(instructions);
|
|
190368
190646
|
}
|
|
190369
190647
|
}
|
|
190370
190648
|
/** A tool that performs the walk operation
|
|
@@ -190374,15 +190652,15 @@ class WalkViewTool extends ViewManip {
|
|
|
190374
190652
|
static toolId = "View.Walk";
|
|
190375
190653
|
static iconSpec = "icon-walk";
|
|
190376
190654
|
constructor(vp, oneShot = false, isDraggingRequired = false) {
|
|
190377
|
-
const viewport = (undefined === vp ?
|
|
190655
|
+
const viewport = (undefined === vp ? _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.selectedView : vp); // Need vp to enable camera/check lens in onReinitialize...
|
|
190378
190656
|
super(viewport, ViewHandleType.Walk | ViewHandleType.Pan, oneShot, isDraggingRequired);
|
|
190379
190657
|
}
|
|
190380
190658
|
get isExitAllowedOnReinitialize() { return true; }
|
|
190381
190659
|
provideInitialToolAssistance() { this.provideToolAssistance("Walk.Prompts.FirstPoint"); }
|
|
190382
190660
|
provideToolAssistance(mainInstrKey) {
|
|
190383
190661
|
const walkInstructions = [];
|
|
190384
|
-
walkInstructions.push(
|
|
190385
|
-
walkInstructions.push(
|
|
190662
|
+
walkInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createModifierKeyInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.shiftKey, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.LeftClickDrag, ViewTool.translate("Pan.flyover"), false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
190663
|
+
walkInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createModifierKeyInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.ctrlKey, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.LeftClickDrag, ViewTool.translate("Look.flyover"), false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
190386
190664
|
super.provideToolAssistance(mainInstrKey, walkInstructions);
|
|
190387
190665
|
}
|
|
190388
190666
|
}
|
|
@@ -190399,8 +190677,8 @@ class FlyViewTool extends ViewManip {
|
|
|
190399
190677
|
provideInitialToolAssistance() { this.provideToolAssistance("Fly.Prompts.FirstPoint"); }
|
|
190400
190678
|
provideToolAssistance(mainInstrKey) {
|
|
190401
190679
|
const flyInstructions = [];
|
|
190402
|
-
flyInstructions.push(
|
|
190403
|
-
flyInstructions.push(
|
|
190680
|
+
flyInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createModifierKeyInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.shiftKey, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.LeftClickDrag, ViewTool.translate("Pan.flyover"), false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
190681
|
+
flyInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createModifierKeyInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.ctrlKey, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.LeftClickDrag, ViewTool.translate("Look.flyover"), false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
190404
190682
|
super.provideToolAssistance(mainInstrKey, flyInstructions);
|
|
190405
190683
|
}
|
|
190406
190684
|
}
|
|
@@ -190421,25 +190699,25 @@ class FitViewTool extends ViewTool {
|
|
|
190421
190699
|
this.isolatedOnly = isolatedOnly;
|
|
190422
190700
|
}
|
|
190423
190701
|
provideToolAssistance() {
|
|
190424
|
-
const mainInstruction =
|
|
190702
|
+
const mainInstruction = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(this.iconSpec, ViewTool.translate("Fit.Prompts.FirstPoint"));
|
|
190425
190703
|
const mouseInstructions = [];
|
|
190426
190704
|
const touchInstructions = [];
|
|
190427
|
-
const acceptMsg =
|
|
190428
|
-
const rejectMsg =
|
|
190429
|
-
touchInstructions.push(
|
|
190430
|
-
mouseInstructions.push(
|
|
190431
|
-
touchInstructions.push(
|
|
190432
|
-
mouseInstructions.push(
|
|
190705
|
+
const acceptMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate("ElementSet.Inputs.Accept");
|
|
190706
|
+
const rejectMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate("ElementSet.Inputs.Exit");
|
|
190707
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.OneTouchTap, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
190708
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.LeftClick, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
190709
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.TwoTouchTap, rejectMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
190710
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.RightClick, rejectMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
190433
190711
|
const sections = [];
|
|
190434
|
-
sections.push(
|
|
190435
|
-
sections.push(
|
|
190436
|
-
const instructions =
|
|
190437
|
-
|
|
190712
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(mouseInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
190713
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(touchInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
190714
|
+
const instructions = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstructions(mainInstruction, sections);
|
|
190715
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.notifications.setToolAssistance(instructions);
|
|
190438
190716
|
}
|
|
190439
190717
|
async onDataButtonDown(ev) {
|
|
190440
190718
|
if (ev.viewport)
|
|
190441
|
-
return await this.doFit(ev.viewport, this.oneShot, this.doAnimate, this.isolatedOnly) ?
|
|
190442
|
-
return
|
|
190719
|
+
return await this.doFit(ev.viewport, this.oneShot, this.doAnimate, this.isolatedOnly) ? _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes : _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
190720
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
190443
190721
|
}
|
|
190444
190722
|
async onPostInstall() {
|
|
190445
190723
|
await super.onPostInstall();
|
|
@@ -190473,13 +190751,13 @@ class ViewGlobeSatelliteTool extends ViewTool {
|
|
|
190473
190751
|
/** @internal */
|
|
190474
190752
|
async onDataButtonDown(ev) {
|
|
190475
190753
|
if (ev.viewport)
|
|
190476
|
-
return (await this._beginSatelliteView(ev.viewport, this.oneShot, this.doAnimate)) ?
|
|
190477
|
-
return
|
|
190754
|
+
return (await this._beginSatelliteView(ev.viewport, this.oneShot, this.doAnimate)) ? _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes : _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
190755
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
190478
190756
|
}
|
|
190479
190757
|
/** @internal */
|
|
190480
190758
|
async onPostInstall() {
|
|
190481
190759
|
await super.onPostInstall();
|
|
190482
|
-
const viewport = undefined === this.viewport ?
|
|
190760
|
+
const viewport = undefined === this.viewport ? _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.selectedView : this.viewport;
|
|
190483
190761
|
if (viewport) {
|
|
190484
190762
|
(async () => {
|
|
190485
190763
|
await this._beginSatelliteView(viewport, this.oneShot, this.doAnimate);
|
|
@@ -190487,11 +190765,11 @@ class ViewGlobeSatelliteTool extends ViewTool {
|
|
|
190487
190765
|
}
|
|
190488
190766
|
}
|
|
190489
190767
|
async _beginSatelliteView(viewport, oneShot, doAnimate = true) {
|
|
190490
|
-
const carto = await (0,
|
|
190768
|
+
const carto = await (0,_ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.eyeToCartographicOnGlobeFromGcs)(viewport);
|
|
190491
190769
|
if (carto !== undefined) {
|
|
190492
190770
|
try {
|
|
190493
190771
|
let elevationOffset = 0;
|
|
190494
|
-
const elevation = await (0,
|
|
190772
|
+
const elevation = await (0,_ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.queryTerrainElevationOffset)(viewport, carto);
|
|
190495
190773
|
if (elevation !== undefined)
|
|
190496
190774
|
elevationOffset = elevation;
|
|
190497
190775
|
return await this._doSatelliteView(viewport, oneShot, doAnimate, elevationOffset);
|
|
@@ -190502,7 +190780,7 @@ class ViewGlobeSatelliteTool extends ViewTool {
|
|
|
190502
190780
|
return true;
|
|
190503
190781
|
}
|
|
190504
190782
|
async _doSatelliteView(viewport, oneShot, doAnimate = true, elevationOffset = 0) {
|
|
190505
|
-
(0,
|
|
190783
|
+
(0,_ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.viewGlobalLocation)(viewport, doAnimate, _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.ViewGlobalLocationConstants.satelliteHeightAboveEarthInMeters + elevationOffset);
|
|
190506
190784
|
if (oneShot)
|
|
190507
190785
|
await this.exitTool();
|
|
190508
190786
|
return oneShot;
|
|
@@ -190525,22 +190803,22 @@ class ViewGlobeBirdTool extends ViewTool {
|
|
|
190525
190803
|
/** @internal */
|
|
190526
190804
|
async onDataButtonDown(ev) {
|
|
190527
190805
|
if (ev.viewport)
|
|
190528
|
-
return (await this._beginDoBirdView(ev.viewport, this.oneShot, this.doAnimate)) ?
|
|
190529
|
-
return
|
|
190806
|
+
return (await this._beginDoBirdView(ev.viewport, this.oneShot, this.doAnimate)) ? _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes : _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
190807
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
190530
190808
|
}
|
|
190531
190809
|
/** @internal */
|
|
190532
190810
|
async onPostInstall() {
|
|
190533
190811
|
await super.onPostInstall();
|
|
190534
|
-
const viewport = undefined === this.viewport ?
|
|
190812
|
+
const viewport = undefined === this.viewport ? _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.selectedView : this.viewport;
|
|
190535
190813
|
if (viewport)
|
|
190536
190814
|
await this._beginDoBirdView(viewport, this.oneShot, this.doAnimate);
|
|
190537
190815
|
}
|
|
190538
190816
|
async _beginDoBirdView(viewport, oneShot, doAnimate = true) {
|
|
190539
|
-
const carto = await (0,
|
|
190817
|
+
const carto = await (0,_ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.eyeToCartographicOnGlobeFromGcs)(viewport);
|
|
190540
190818
|
if (carto !== undefined) {
|
|
190541
190819
|
try {
|
|
190542
190820
|
let elevationOffset = 0;
|
|
190543
|
-
const elevation = await (0,
|
|
190821
|
+
const elevation = await (0,_ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.queryTerrainElevationOffset)(viewport, carto);
|
|
190544
190822
|
if (elevation !== undefined)
|
|
190545
190823
|
elevationOffset = elevation;
|
|
190546
190824
|
return await this._doBirdView(viewport, oneShot, doAnimate, elevationOffset);
|
|
@@ -190551,7 +190829,7 @@ class ViewGlobeBirdTool extends ViewTool {
|
|
|
190551
190829
|
return true;
|
|
190552
190830
|
}
|
|
190553
190831
|
async _doBirdView(viewport, oneShot, doAnimate = true, elevationOffset = 0) {
|
|
190554
|
-
(0,
|
|
190832
|
+
(0,_ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.viewGlobalLocation)(viewport, doAnimate, _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.ViewGlobalLocationConstants.birdHeightAboveEarthInMeters + elevationOffset, _ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.ViewGlobalLocationConstants.birdPitchAngleRadians);
|
|
190555
190833
|
if (oneShot)
|
|
190556
190834
|
await this.exitTool();
|
|
190557
190835
|
return oneShot;
|
|
@@ -190592,13 +190870,13 @@ class ViewGlobeLocationTool extends ViewTool {
|
|
|
190592
190870
|
}
|
|
190593
190871
|
if (this._globalLocation === undefined) {
|
|
190594
190872
|
const locationString = args.join(" ");
|
|
190595
|
-
const
|
|
190873
|
+
const locationProvider = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.locationProvider;
|
|
190596
190874
|
try {
|
|
190597
|
-
this._globalLocation = await
|
|
190875
|
+
this._globalLocation = await locationProvider.getLocation(locationString);
|
|
190598
190876
|
if (this._globalLocation !== undefined) {
|
|
190599
|
-
const viewport = undefined === this.viewport ?
|
|
190877
|
+
const viewport = undefined === this.viewport ? _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.selectedView : this.viewport;
|
|
190600
190878
|
if (viewport !== undefined) {
|
|
190601
|
-
const elevationOffset = await (0,
|
|
190879
|
+
const elevationOffset = await (0,_ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.queryTerrainElevationOffset)(viewport, this._globalLocation.center);
|
|
190602
190880
|
if (elevationOffset !== undefined)
|
|
190603
190881
|
this._globalLocation.center.height = elevationOffset;
|
|
190604
190882
|
}
|
|
@@ -190617,7 +190895,7 @@ class ViewGlobeLocationTool extends ViewTool {
|
|
|
190617
190895
|
await this._doLocationView();
|
|
190618
190896
|
}
|
|
190619
190897
|
async _doLocationView() {
|
|
190620
|
-
const viewport = undefined === this.viewport ?
|
|
190898
|
+
const viewport = undefined === this.viewport ? _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.selectedView : this.viewport;
|
|
190621
190899
|
if (viewport) {
|
|
190622
190900
|
if (undefined !== this._globalLocation)
|
|
190623
190901
|
await viewport.animateFlyoverToGlobalLocation(this._globalLocation);
|
|
@@ -190644,8 +190922,8 @@ class ViewGlobeIModelTool extends ViewTool {
|
|
|
190644
190922
|
/** @internal */
|
|
190645
190923
|
async onDataButtonDown(ev) {
|
|
190646
190924
|
if (ev.viewport)
|
|
190647
|
-
return await this._doIModelView() ?
|
|
190648
|
-
return
|
|
190925
|
+
return await this._doIModelView() ? _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes : _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
190926
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
190649
190927
|
}
|
|
190650
190928
|
/** @internal */
|
|
190651
190929
|
async onPostInstall() {
|
|
@@ -190653,14 +190931,14 @@ class ViewGlobeIModelTool extends ViewTool {
|
|
|
190653
190931
|
await this._doIModelView();
|
|
190654
190932
|
}
|
|
190655
190933
|
async _doIModelView() {
|
|
190656
|
-
const viewport = undefined === this.viewport ?
|
|
190657
|
-
if (viewport && (viewport.view instanceof
|
|
190934
|
+
const viewport = undefined === this.viewport ? _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.selectedView : this.viewport;
|
|
190935
|
+
if (viewport && (viewport.view instanceof _ViewState__WEBPACK_IMPORTED_MODULE_13__.ViewState3d)) {
|
|
190658
190936
|
const extents = viewport.view.iModel.projectExtents;
|
|
190659
190937
|
const center = viewport.view.iModel.projectExtents.center;
|
|
190660
190938
|
const view3d = viewport.view;
|
|
190661
190939
|
const cartographicCenter = view3d.rootToCartographic(center);
|
|
190662
190940
|
if (cartographicCenter !== undefined) {
|
|
190663
|
-
const cartographicArea = (0,
|
|
190941
|
+
const cartographicArea = (0,_ViewGlobalLocation__WEBPACK_IMPORTED_MODULE_10__.rangeToCartographicArea)(view3d, extents);
|
|
190664
190942
|
(async () => {
|
|
190665
190943
|
await viewport.animateFlyoverToGlobalLocation({ center: cartographicCenter, area: cartographicArea });
|
|
190666
190944
|
})().catch(() => { });
|
|
@@ -190686,7 +190964,7 @@ class StandardViewTool extends ViewTool {
|
|
|
190686
190964
|
await super.onPostInstall();
|
|
190687
190965
|
if (this.viewport) {
|
|
190688
190966
|
const vp = this.viewport;
|
|
190689
|
-
const id = vp.view.allow3dManipulations() ? this._standardViewId :
|
|
190967
|
+
const id = vp.view.allow3dManipulations() ? this._standardViewId : _StandardView__WEBPACK_IMPORTED_MODULE_9__.StandardViewId.Top;
|
|
190690
190968
|
const rMatrix = _AccuDraw__WEBPACK_IMPORTED_MODULE_4__.AccuDraw.getStandardRotation(id, vp, vp.isContextRotationRequired);
|
|
190691
190969
|
const inverse = rMatrix.inverse();
|
|
190692
190970
|
if (undefined !== inverse) {
|
|
@@ -190727,40 +191005,40 @@ class WindowAreaTool extends ViewTool {
|
|
|
190727
191005
|
async onResetButtonUp(ev) {
|
|
190728
191006
|
if (this._haveFirstPoint) {
|
|
190729
191007
|
await this.onReinitialize();
|
|
190730
|
-
return
|
|
191008
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
190731
191009
|
}
|
|
190732
191010
|
return super.onResetButtonUp(ev);
|
|
190733
191011
|
}
|
|
190734
191012
|
provideToolAssistance() {
|
|
190735
|
-
const mainInstruction =
|
|
191013
|
+
const mainInstruction = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(this.iconSpec, ViewTool.translate(this._haveFirstPoint ? "WindowArea.Prompts.NextPoint" : "WindowArea.Prompts.FirstPoint"));
|
|
190736
191014
|
const mouseInstructions = [];
|
|
190737
191015
|
const touchInstructions = [];
|
|
190738
|
-
const acceptMsg =
|
|
190739
|
-
const restartMsg =
|
|
190740
|
-
const exitMsg =
|
|
190741
|
-
touchInstructions.push(
|
|
190742
|
-
mouseInstructions.push(
|
|
190743
|
-
touchInstructions.push(
|
|
190744
|
-
mouseInstructions.push(
|
|
191016
|
+
const acceptMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate("ElementSet.Inputs.AcceptPoint");
|
|
191017
|
+
const restartMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate("ElementSet.Inputs.Restart");
|
|
191018
|
+
const exitMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate("ElementSet.Inputs.Exit");
|
|
191019
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.OneTouchDrag, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
191020
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.LeftClick, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
191021
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.TwoTouchTap, exitMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
191022
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.RightClick, this._haveFirstPoint ? restartMsg : exitMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
190745
191023
|
const sections = [];
|
|
190746
|
-
sections.push(
|
|
190747
|
-
sections.push(
|
|
190748
|
-
const instructions =
|
|
190749
|
-
|
|
191024
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(mouseInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
191025
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(touchInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
191026
|
+
const instructions = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstructions(mainInstruction, sections);
|
|
191027
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.notifications.setToolAssistance(instructions);
|
|
190750
191028
|
}
|
|
190751
191029
|
async onDataButtonDown(ev) {
|
|
190752
191030
|
if (undefined === ev.viewport)
|
|
190753
|
-
return
|
|
191031
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
190754
191032
|
if (undefined === this.viewport) {
|
|
190755
191033
|
this.viewport = ev.viewport;
|
|
190756
191034
|
}
|
|
190757
191035
|
else if (!ev.viewport.view.hasSameCoordinates(this.viewport.view)) {
|
|
190758
191036
|
if (this._haveFirstPoint)
|
|
190759
|
-
return
|
|
191037
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
190760
191038
|
this.viewport = ev.viewport;
|
|
190761
191039
|
this._lastPtView = ev.viewPoint;
|
|
190762
|
-
|
|
190763
|
-
return
|
|
191040
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.invalidateDecorationsAllViews();
|
|
191041
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
190764
191042
|
}
|
|
190765
191043
|
if (this._haveFirstPoint) {
|
|
190766
191044
|
this._secondPtWorld.setFrom(ev.point);
|
|
@@ -190775,26 +191053,26 @@ class WindowAreaTool extends ViewTool {
|
|
|
190775
191053
|
this._lastPtView = ev.viewPoint;
|
|
190776
191054
|
this.provideToolAssistance();
|
|
190777
191055
|
}
|
|
190778
|
-
return
|
|
191056
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
190779
191057
|
}
|
|
190780
191058
|
async onMouseMotion(ev) { this.doManipulation(ev, true); }
|
|
190781
|
-
async onTouchTap(ev) { return ev.isSingleTap ?
|
|
191059
|
+
async onTouchTap(ev) { return ev.isSingleTap ? _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes : _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No; } // Prevent IdleTool from converting single tap into data button down/up...
|
|
190782
191060
|
async onTouchMoveStart(ev, startEv) {
|
|
190783
191061
|
if (!this._haveFirstPoint && startEv.isSingleTouch)
|
|
190784
|
-
await
|
|
190785
|
-
return this._haveFirstPoint ?
|
|
191062
|
+
await _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.convertTouchMoveStartToButtonDownAndMotion(startEv, ev);
|
|
191063
|
+
return this._haveFirstPoint ? _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes : _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.No;
|
|
190786
191064
|
}
|
|
190787
191065
|
async onTouchMove(ev) {
|
|
190788
191066
|
if (this._haveFirstPoint)
|
|
190789
|
-
return
|
|
191067
|
+
return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.convertTouchMoveToMotion(ev);
|
|
190790
191068
|
}
|
|
190791
191069
|
async onTouchComplete(ev) {
|
|
190792
191070
|
if (this._haveFirstPoint)
|
|
190793
|
-
return
|
|
191071
|
+
return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.convertTouchEndToButtonUp(ev);
|
|
190794
191072
|
}
|
|
190795
191073
|
async onTouchCancel(ev) {
|
|
190796
191074
|
if (this._haveFirstPoint)
|
|
190797
|
-
return
|
|
191075
|
+
return _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.convertTouchEndToButtonUp(ev, _Tool__WEBPACK_IMPORTED_MODULE_17__.BeButton.Reset);
|
|
190798
191076
|
}
|
|
190799
191077
|
computeWindowCorners() {
|
|
190800
191078
|
const vp = this.viewport;
|
|
@@ -190805,7 +191083,7 @@ class WindowAreaTool extends ViewTool {
|
|
|
190805
191083
|
corners[1].setFrom(this._secondPtWorld);
|
|
190806
191084
|
vp.worldToViewArray(corners);
|
|
190807
191085
|
const delta = corners[1].minus(corners[0]);
|
|
190808
|
-
if (delta.magnitudeXY() < vp.pixelsFromInches(
|
|
191086
|
+
if (delta.magnitudeXY() < vp.pixelsFromInches(_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.startDragDistanceInches))
|
|
190809
191087
|
return undefined;
|
|
190810
191088
|
const currentDelta = vp.viewDelta;
|
|
190811
191089
|
if (currentDelta.x === 0 || delta.x === 0)
|
|
@@ -190846,7 +191124,7 @@ class WindowAreaTool extends ViewTool {
|
|
|
190846
191124
|
this._shapePts[0].z = this._shapePts[1].z = this._shapePts[2].z = this._shapePts[3].z = corners[0].z;
|
|
190847
191125
|
this._shapePts[4].setFrom(this._shapePts[0]);
|
|
190848
191126
|
vp.viewToWorldArray(this._shapePts);
|
|
190849
|
-
const builder = context.createGraphicBuilder(
|
|
191127
|
+
const builder = context.createGraphicBuilder(_common_render_GraphicType__WEBPACK_IMPORTED_MODULE_20__.GraphicType.WorldOverlay);
|
|
190850
191128
|
builder.setBlankingFill(this._fillColor);
|
|
190851
191129
|
builder.addShape(this._shapePts);
|
|
190852
191130
|
builder.setSymbology(color, color, 1 /* ViewHandleWeight.Thin */);
|
|
@@ -190856,7 +191134,7 @@ class WindowAreaTool extends ViewTool {
|
|
|
190856
191134
|
context.addDecorationFromBuilder(builder);
|
|
190857
191135
|
return;
|
|
190858
191136
|
}
|
|
190859
|
-
if (undefined === this._lastPtView || context.viewport !==
|
|
191137
|
+
if (undefined === this._lastPtView || context.viewport !== _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.toolAdmin.cursorView)
|
|
190860
191138
|
return; // Full screen cross-hair only displays in cursor view...
|
|
190861
191139
|
const cursorPt = this._lastPtView.clone();
|
|
190862
191140
|
cursorPt.x = Math.floor(cursorPt.x) + 0.5;
|
|
@@ -190882,7 +191160,7 @@ class WindowAreaTool extends ViewTool {
|
|
|
190882
191160
|
return;
|
|
190883
191161
|
}
|
|
190884
191162
|
this._lastPtView = ev.viewPoint;
|
|
190885
|
-
|
|
191163
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.invalidateDecorationsAllViews();
|
|
190886
191164
|
return;
|
|
190887
191165
|
}
|
|
190888
191166
|
const corners = this.computeWindowCorners();
|
|
@@ -190901,7 +191179,7 @@ class WindowAreaTool extends ViewTool {
|
|
|
190901
191179
|
if (view.is3d() && view.isCameraOn) {
|
|
190902
191180
|
const windowArray = [corners[0].clone(), corners[1].clone()];
|
|
190903
191181
|
vp.worldToViewArray(windowArray);
|
|
190904
|
-
const windowRange = new
|
|
191182
|
+
const windowRange = new _common_ViewRect__WEBPACK_IMPORTED_MODULE_12__.ViewRect(windowArray[0].x, windowArray[0].y, windowArray[1].x, windowArray[1].y);
|
|
190905
191183
|
let npcZValues = vp.determineVisibleDepthRange(windowRange);
|
|
190906
191184
|
if (undefined === npcZValues)
|
|
190907
191185
|
npcZValues = { minimum: 0, maximum: ViewManip.getFocusPlaneNpc(vp) };
|
|
@@ -190916,7 +191194,7 @@ class WindowAreaTool extends ViewTool {
|
|
|
190916
191194
|
const focusDist = delta.x / (2.0 * Math.tan(lensAngle.radians / 2));
|
|
190917
191195
|
const newTarget = corners[0].interpolate(.5, corners[1]);
|
|
190918
191196
|
const newEye = newTarget.plusScaled(view.getZVector(), focusDist);
|
|
190919
|
-
if (
|
|
191197
|
+
if (_ViewStatus__WEBPACK_IMPORTED_MODULE_14__.ViewStatus.Success !== view.lookAt({ eyePoint: newEye, targetPoint: newTarget, upVector: view.getYVector(), lensAngle, opts }))
|
|
190920
191198
|
return;
|
|
190921
191199
|
globalAlignment = { target: newTarget };
|
|
190922
191200
|
}
|
|
@@ -190930,7 +191208,7 @@ class WindowAreaTool extends ViewTool {
|
|
|
190930
191208
|
const originVec = rot.multiplyTransposeXYZ(range.low.x, range.low.y, range.low.z);
|
|
190931
191209
|
// make sure its not too big or too small
|
|
190932
191210
|
const stat = view.adjustViewDelta(delta, originVec, rot, vp.viewRect.aspect, opts);
|
|
190933
|
-
if (stat !==
|
|
191211
|
+
if (stat !== _ViewStatus__WEBPACK_IMPORTED_MODULE_14__.ViewStatus.Success)
|
|
190934
191212
|
return;
|
|
190935
191213
|
view.setExtents(delta);
|
|
190936
191214
|
view.setOrigin(originVec);
|
|
@@ -191004,7 +191282,7 @@ class DefaultViewTouchTool extends ViewManip {
|
|
|
191004
191282
|
this._rotate2dThreshold = undefined;
|
|
191005
191283
|
this._lastPtView.setFrom(this._startPtView);
|
|
191006
191284
|
this._startTouchCount = ev.touchCount;
|
|
191007
|
-
this._startDirection = (2 <= ev.touchCount ? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector2d.createStartEnd(
|
|
191285
|
+
this._startDirection = (2 <= ev.touchCount ? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector2d.createStartEnd(_Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.getTouchPosition(ev.touchEvent.targetTouches[0], vp), _Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.getTouchPosition(ev.touchEvent.targetTouches[1], vp)) : _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector2d.createZero());
|
|
191008
191286
|
this._startDistance = (2 === ev.touchCount ? this._startDirection.magnitude() : 0.0);
|
|
191009
191287
|
}
|
|
191010
191288
|
computeZoomRatio(ev) {
|
|
@@ -191013,8 +191291,8 @@ class DefaultViewTouchTool extends ViewManip {
|
|
|
191013
191291
|
const vp = this.viewport;
|
|
191014
191292
|
if (undefined === vp)
|
|
191015
191293
|
return 1.0;
|
|
191016
|
-
const distance = (2 === ev.touchCount ?
|
|
191017
|
-
const threshold = vp.pixelsFromInches(
|
|
191294
|
+
const distance = (2 === ev.touchCount ? _Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.getTouchPosition(ev.touchEvent.targetTouches[0], vp).distance(_Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.getTouchPosition(ev.touchEvent.targetTouches[1], vp)) : 0.0);
|
|
191295
|
+
const threshold = vp.pixelsFromInches(_ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.touchZoomChangeThresholdInches);
|
|
191018
191296
|
if (0.0 === distance || Math.abs(this._startDistance - distance) < threshold)
|
|
191019
191297
|
return 1.0;
|
|
191020
191298
|
// Remove inertia if the viewing operation includes zoom, only use it for pan and rotate.
|
|
@@ -191028,7 +191306,7 @@ class DefaultViewTouchTool extends ViewManip {
|
|
|
191028
191306
|
const vp = this.viewport;
|
|
191029
191307
|
if (undefined === vp)
|
|
191030
191308
|
return _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Angle.createDegrees(0.0);
|
|
191031
|
-
const direction = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector2d.createStartEnd(
|
|
191309
|
+
const direction = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector2d.createStartEnd(_Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.getTouchPosition(ev.touchEvent.targetTouches[0], vp), _Tool__WEBPACK_IMPORTED_MODULE_17__.BeTouchEvent.getTouchPosition(ev.touchEvent.targetTouches[1], vp));
|
|
191032
191310
|
const rotation = this._startDirection.angleTo(direction);
|
|
191033
191311
|
if (undefined === this._rotate2dThreshold) {
|
|
191034
191312
|
if (Math.abs(rotation.radians) < _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Angle.createDegrees(5.0).radians)
|
|
@@ -191074,7 +191352,7 @@ class DefaultViewTouchTool extends ViewManip {
|
|
|
191074
191352
|
const yExtent = viewRect.height;
|
|
191075
191353
|
const xDelta = this._lastPtView.x - this._startPtView.x;
|
|
191076
191354
|
const yDelta = this._lastPtView.y - this._startPtView.y;
|
|
191077
|
-
const xAxis =
|
|
191355
|
+
const xAxis = _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.preserveWorldUp ? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ() : vp.rotation.getRow(1);
|
|
191078
191356
|
const yAxis = vp.rotation.getRow(0);
|
|
191079
191357
|
const xRMatrix = (xDelta ? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d.createRotationAroundVector(xAxis, _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Angle.createRadians(Math.PI / (xExtent / xDelta))) : undefined) ?? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d.identity;
|
|
191080
191358
|
const yRMatrix = (yDelta ? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d.createRotationAroundVector(yAxis, _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Angle.createRadians(Math.PI / (yExtent / yDelta))) : undefined) ?? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Matrix3d.identity;
|
|
@@ -191159,8 +191437,8 @@ class DefaultViewTouchTool extends ViewManip {
|
|
|
191159
191437
|
singleTouch ? this.handle3dRotate() : this.handle3dPanZoom(ev) :
|
|
191160
191438
|
singleTouch ? this.handle2dPan() : this.handle2dRotateZoom(ev);
|
|
191161
191439
|
}
|
|
191162
|
-
async onDataButtonDown(_ev) { return
|
|
191163
|
-
async onDataButtonUp(_ev) { return
|
|
191440
|
+
async onDataButtonDown(_ev) { return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes; }
|
|
191441
|
+
async onDataButtonUp(_ev) { return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes; }
|
|
191164
191442
|
async onTouchStart(ev) {
|
|
191165
191443
|
if (undefined !== this.viewport)
|
|
191166
191444
|
this.onStart(ev);
|
|
@@ -191172,7 +191450,7 @@ class DefaultViewTouchTool extends ViewManip {
|
|
|
191172
191450
|
async onTouchComplete(_ev) {
|
|
191173
191451
|
// if we were moving when the touch ended, add inertia to the viewing operation
|
|
191174
191452
|
if (this._inertiaVec) {
|
|
191175
|
-
this._duration =
|
|
191453
|
+
this._duration = _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.viewingInertia.duration;
|
|
191176
191454
|
if (this._duration.isTowardsFuture) { // ensure duration is towards future. Otherwise, don't start animation
|
|
191177
191455
|
this._end = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.fromNow(this._duration);
|
|
191178
191456
|
if (undefined !== this.viewport)
|
|
@@ -191190,7 +191468,7 @@ class ViewUndoTool extends ViewTool {
|
|
|
191190
191468
|
static iconSpec = "icon-window-backward";
|
|
191191
191469
|
async onPostInstall() {
|
|
191192
191470
|
if (this.viewport)
|
|
191193
|
-
this.viewport.doUndo(
|
|
191471
|
+
this.viewport.doUndo(_Viewport__WEBPACK_IMPORTED_MODULE_11__.ScreenViewport.animation.time.normal);
|
|
191194
191472
|
return this.exitTool();
|
|
191195
191473
|
}
|
|
191196
191474
|
}
|
|
@@ -191202,7 +191480,7 @@ class ViewRedoTool extends ViewTool {
|
|
|
191202
191480
|
static iconSpec = "icon-window-forward";
|
|
191203
191481
|
async onPostInstall() {
|
|
191204
191482
|
if (this.viewport)
|
|
191205
|
-
this.viewport.doRedo(
|
|
191483
|
+
this.viewport.doRedo(_Viewport__WEBPACK_IMPORTED_MODULE_11__.ScreenViewport.animation.time.normal);
|
|
191206
191484
|
return this.exitTool();
|
|
191207
191485
|
}
|
|
191208
191486
|
}
|
|
@@ -191230,7 +191508,7 @@ class ViewToggleCameraTool extends ViewTool {
|
|
|
191230
191508
|
* by calling QuantityFormatter.onInitialized at app startup.
|
|
191231
191509
|
* @public
|
|
191232
191510
|
*/
|
|
191233
|
-
class SetupCameraTool extends
|
|
191511
|
+
class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_16__.PrimitiveTool {
|
|
191234
191512
|
static toolId = "View.SetupCamera";
|
|
191235
191513
|
static iconSpec = "icon-camera-location";
|
|
191236
191514
|
viewport;
|
|
@@ -191246,7 +191524,7 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.Primi
|
|
|
191246
191524
|
}
|
|
191247
191525
|
async onUnsuspend() { this.provideToolAssistance(); }
|
|
191248
191526
|
setupAndPromptForNextAction() {
|
|
191249
|
-
|
|
191527
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.accuSnap.enableSnap(true);
|
|
191250
191528
|
this.provideToolAssistance();
|
|
191251
191529
|
}
|
|
191252
191530
|
async onResetButtonUp(_ev) {
|
|
@@ -191254,24 +191532,24 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.Primi
|
|
|
191254
191532
|
await this.onReinitialize();
|
|
191255
191533
|
else
|
|
191256
191534
|
await this.exitTool();
|
|
191257
|
-
return
|
|
191535
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191258
191536
|
}
|
|
191259
191537
|
provideToolAssistance() {
|
|
191260
|
-
const mainInstruction =
|
|
191538
|
+
const mainInstruction = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(this.iconSpec, ViewTool.translate(this._haveEyePt ? "SetupCamera.Prompts.NextPoint" : "SetupCamera.Prompts.FirstPoint"));
|
|
191261
191539
|
const mouseInstructions = [];
|
|
191262
191540
|
const touchInstructions = [];
|
|
191263
|
-
const acceptMsg =
|
|
191264
|
-
const rejectMsg =
|
|
191265
|
-
if (!
|
|
191266
|
-
touchInstructions.push(
|
|
191267
|
-
mouseInstructions.push(
|
|
191268
|
-
touchInstructions.push(
|
|
191269
|
-
mouseInstructions.push(
|
|
191541
|
+
const acceptMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate("ElementSet.Inputs.AcceptPoint");
|
|
191542
|
+
const rejectMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate(this._haveEyePt ? "ElementSet.Inputs.Restart" : "ElementSet.Inputs.Exit");
|
|
191543
|
+
if (!_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createTouchCursorInstructions(touchInstructions))
|
|
191544
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.OneTouchTap, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
191545
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.LeftClick, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
191546
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.TwoTouchTap, rejectMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
191547
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.RightClick, rejectMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
191270
191548
|
const sections = [];
|
|
191271
|
-
sections.push(
|
|
191272
|
-
sections.push(
|
|
191273
|
-
const instructions =
|
|
191274
|
-
|
|
191549
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(mouseInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
191550
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(touchInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
191551
|
+
const instructions = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstructions(mainInstruction, sections);
|
|
191552
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.notifications.setToolAssistance(instructions);
|
|
191275
191553
|
}
|
|
191276
191554
|
async onRestartTool() {
|
|
191277
191555
|
const tool = new SetupCameraTool();
|
|
@@ -191282,18 +191560,18 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.Primi
|
|
|
191282
191560
|
getAdjustedTargetPoint() { return this.useTargetHeight ? this._targetPtWorld.plusScaled(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ(), this.targetHeight) : this._targetPtWorld; }
|
|
191283
191561
|
async onDataButtonDown(ev) {
|
|
191284
191562
|
if (undefined === ev.viewport) {
|
|
191285
|
-
return
|
|
191563
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191286
191564
|
}
|
|
191287
191565
|
else if (undefined === this.viewport) {
|
|
191288
191566
|
if (!ev.viewport.view.allow3dManipulations())
|
|
191289
|
-
return
|
|
191567
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191290
191568
|
this.viewport = ev.viewport;
|
|
191291
191569
|
}
|
|
191292
191570
|
else if (this.viewport.view.iModel !== ev.viewport.view.iModel) {
|
|
191293
191571
|
if (this._haveEyePt)
|
|
191294
|
-
return
|
|
191572
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191295
191573
|
this.viewport = ev.viewport;
|
|
191296
|
-
return
|
|
191574
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191297
191575
|
}
|
|
191298
191576
|
if (this._haveEyePt) {
|
|
191299
191577
|
this._targetPtWorld.setFrom(ev.point);
|
|
@@ -191306,13 +191584,13 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.Primi
|
|
|
191306
191584
|
this._haveEyePt = true;
|
|
191307
191585
|
this.setupAndPromptForNextAction();
|
|
191308
191586
|
}
|
|
191309
|
-
return
|
|
191587
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191310
191588
|
}
|
|
191311
191589
|
async onMouseMotion(ev) {
|
|
191312
191590
|
if (!this._haveEyePt)
|
|
191313
191591
|
return;
|
|
191314
191592
|
this._targetPtWorld.setFrom(ev.point);
|
|
191315
|
-
|
|
191593
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.invalidateDecorationsAllViews();
|
|
191316
191594
|
}
|
|
191317
191595
|
static drawCameraFrustum(context, vp, eyePtWorld, targetPtWorld, eyeSnapPtWorld, targetSnapPtWorld) {
|
|
191318
191596
|
if (!vp.view.is3d() || vp.view.iModel !== context.viewport.view.iModel)
|
|
@@ -191327,7 +191605,7 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.Primi
|
|
|
191327
191605
|
return;
|
|
191328
191606
|
if (zVec.crossProduct(xVec).normalizeWithLength(yVec).mag < _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance)
|
|
191329
191607
|
return;
|
|
191330
|
-
const lensAngle =
|
|
191608
|
+
const lensAngle = _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkCameraAngle;
|
|
191331
191609
|
const extentX = Math.tan(lensAngle.radians / 2.0) * focusDist;
|
|
191332
191610
|
const extentY = extentX * (vp.view.extents.y / vp.view.extents.x);
|
|
191333
191611
|
const pt1 = targetPtWorld.plusScaled(xVec, -extentX);
|
|
@@ -191338,8 +191616,8 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.Primi
|
|
|
191338
191616
|
pt3.plusScaled(yVec, -extentY, pt3);
|
|
191339
191617
|
const pt4 = targetPtWorld.plusScaled(xVec, -extentX);
|
|
191340
191618
|
pt4.plusScaled(yVec, -extentY, pt4);
|
|
191341
|
-
const color =
|
|
191342
|
-
const builderHid = context.createGraphicBuilder(
|
|
191619
|
+
const color = _EditManipulator__WEBPACK_IMPORTED_MODULE_15__.EditManipulator.HandleUtils.adjustForBackgroundColor(_itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef.black, vp);
|
|
191620
|
+
const builderHid = context.createGraphicBuilder(_common_render_GraphicType__WEBPACK_IMPORTED_MODULE_20__.GraphicType.WorldOverlay);
|
|
191343
191621
|
builderHid.setSymbology(color, color, 3 /* ViewHandleWeight.Bold */);
|
|
191344
191622
|
builderHid.addLineString([eyePtWorld, targetPtWorld]);
|
|
191345
191623
|
builderHid.setSymbology(color, color, 1 /* ViewHandleWeight.Thin */, _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.LinePixels.Code2);
|
|
@@ -191361,7 +191639,7 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.Primi
|
|
|
191361
191639
|
context.addDecorationFromBuilder(builderHid);
|
|
191362
191640
|
const backColor = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef.from(0, 0, 255, 200);
|
|
191363
191641
|
const sideColor = context.viewport.hilite.color.withAlpha(25);
|
|
191364
|
-
const builderVis = context.createGraphicBuilder(
|
|
191642
|
+
const builderVis = context.createGraphicBuilder(_common_render_GraphicType__WEBPACK_IMPORTED_MODULE_20__.GraphicType.WorldDecoration);
|
|
191365
191643
|
builderVis.setSymbology(color, color, 2 /* ViewHandleWeight.Normal */);
|
|
191366
191644
|
builderVis.addLineString([eyePtWorld, pt1]);
|
|
191367
191645
|
builderVis.addLineString([eyePtWorld, pt2]);
|
|
@@ -191392,8 +191670,8 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.Primi
|
|
|
191392
191670
|
return;
|
|
191393
191671
|
const eyePoint = this.getAdjustedEyePoint();
|
|
191394
191672
|
const targetPoint = this.getAdjustedTargetPoint();
|
|
191395
|
-
const lensAngle =
|
|
191396
|
-
if (
|
|
191673
|
+
const lensAngle = _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkCameraAngle;
|
|
191674
|
+
if (_ViewStatus__WEBPACK_IMPORTED_MODULE_14__.ViewStatus.Success !== view.lookAt({ eyePoint, targetPoint, upVector: _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ(), lensAngle }))
|
|
191397
191675
|
return;
|
|
191398
191676
|
vp.synchWithView({ animateFrustumChange: true });
|
|
191399
191677
|
}
|
|
@@ -191408,7 +191686,7 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.Primi
|
|
|
191408
191686
|
_cameraHeightProperty;
|
|
191409
191687
|
get cameraHeightProperty() {
|
|
191410
191688
|
if (!this._cameraHeightProperty)
|
|
191411
|
-
this._cameraHeightProperty = new _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_3__.DialogProperty((0,
|
|
191689
|
+
this._cameraHeightProperty = new _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_3__.DialogProperty((0,_properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_7__.createQuantityDescription)({
|
|
191412
191690
|
name: "cameraHeight",
|
|
191413
191691
|
displayLabel: ViewTool.translate("SetupCamera.Labels.CameraHeight"),
|
|
191414
191692
|
kindOfQuantityName: "DefaultToolsUnits.LENGTH",
|
|
@@ -191429,7 +191707,7 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.Primi
|
|
|
191429
191707
|
_targetHeightProperty;
|
|
191430
191708
|
get targetHeightProperty() {
|
|
191431
191709
|
if (!this._targetHeightProperty)
|
|
191432
|
-
this._targetHeightProperty = new _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_3__.DialogProperty((0,
|
|
191710
|
+
this._targetHeightProperty = new _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_3__.DialogProperty((0,_properties_FormattedQuantityDescription__WEBPACK_IMPORTED_MODULE_7__.createQuantityDescription)({
|
|
191433
191711
|
name: "targetHeight",
|
|
191434
191712
|
displayLabel: ViewTool.translate("SetupCamera.Labels.TargetHeight"),
|
|
191435
191713
|
kindOfQuantityName: "DefaultToolsUnits.LENGTH",
|
|
@@ -191462,7 +191740,7 @@ class SetupCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.Primi
|
|
|
191462
191740
|
/** A tool that sets a walk tool starting position by a floor point and look direction. This is a PrimitiveTool and not a ViewTool to allow the view to be panned, zoomed, and rotated while defining the points.
|
|
191463
191741
|
* @public
|
|
191464
191742
|
*/
|
|
191465
|
-
class SetupWalkCameraTool extends
|
|
191743
|
+
class SetupWalkCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_16__.PrimitiveTool {
|
|
191466
191744
|
static toolId = "View.SetupWalkCamera";
|
|
191467
191745
|
static iconSpec = "icon-camera-location";
|
|
191468
191746
|
viewport;
|
|
@@ -191478,7 +191756,7 @@ class SetupWalkCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.P
|
|
|
191478
191756
|
}
|
|
191479
191757
|
async onUnsuspend() { this.provideToolAssistance(); }
|
|
191480
191758
|
setupAndPromptForNextAction() {
|
|
191481
|
-
|
|
191759
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.accuSnap.enableSnap(true);
|
|
191482
191760
|
this.provideToolAssistance();
|
|
191483
191761
|
}
|
|
191484
191762
|
async onResetButtonUp(_ev) {
|
|
@@ -191486,46 +191764,46 @@ class SetupWalkCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.P
|
|
|
191486
191764
|
await this.onReinitialize();
|
|
191487
191765
|
else
|
|
191488
191766
|
await this.exitTool();
|
|
191489
|
-
return
|
|
191767
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191490
191768
|
}
|
|
191491
191769
|
provideToolAssistance() {
|
|
191492
|
-
const mainInstruction =
|
|
191770
|
+
const mainInstruction = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(this.iconSpec, ViewTool.translate(this._haveEyePt ? "SetupWalkCamera.Prompts.NextPoint" : "SetupWalkCamera.Prompts.FirstPoint"));
|
|
191493
191771
|
const mouseInstructions = [];
|
|
191494
191772
|
const touchInstructions = [];
|
|
191495
|
-
const acceptMsg =
|
|
191496
|
-
const rejectMsg =
|
|
191497
|
-
if (!
|
|
191498
|
-
touchInstructions.push(
|
|
191499
|
-
mouseInstructions.push(
|
|
191500
|
-
touchInstructions.push(
|
|
191501
|
-
mouseInstructions.push(
|
|
191773
|
+
const acceptMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate("ElementSet.Inputs.AcceptPoint");
|
|
191774
|
+
const rejectMsg = _Tool__WEBPACK_IMPORTED_MODULE_17__.CoreTools.translate(this._haveEyePt ? "ElementSet.Inputs.Restart" : "ElementSet.Inputs.Exit");
|
|
191775
|
+
if (!_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createTouchCursorInstructions(touchInstructions))
|
|
191776
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.OneTouchTap, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
191777
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.LeftClick, acceptMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
191778
|
+
touchInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.TwoTouchTap, rejectMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Touch));
|
|
191779
|
+
mouseInstructions.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstruction(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceImage.RightClick, rejectMsg, false, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistanceInputMethod.Mouse));
|
|
191502
191780
|
const sections = [];
|
|
191503
|
-
sections.push(
|
|
191504
|
-
sections.push(
|
|
191505
|
-
const instructions =
|
|
191506
|
-
|
|
191781
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(mouseInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
191782
|
+
sections.push(_ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createSection(touchInstructions, _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.inputsLabel));
|
|
191783
|
+
const instructions = _ToolAssistance__WEBPACK_IMPORTED_MODULE_18__.ToolAssistance.createInstructions(mainInstruction, sections);
|
|
191784
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.notifications.setToolAssistance(instructions);
|
|
191507
191785
|
}
|
|
191508
191786
|
async onRestartTool() {
|
|
191509
191787
|
const tool = new SetupWalkCameraTool();
|
|
191510
191788
|
if (!await tool.run())
|
|
191511
191789
|
return this.exitTool();
|
|
191512
191790
|
}
|
|
191513
|
-
getAdjustedEyePoint() { return this._eyePtWorld.plusScaled(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ(),
|
|
191791
|
+
getAdjustedEyePoint() { return this._eyePtWorld.plusScaled(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ(), _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkEyeHeight); }
|
|
191514
191792
|
getAdjustedTargetPoint() { return _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(this._targetPtWorld.x, this._targetPtWorld.y, this.getAdjustedEyePoint().z); }
|
|
191515
191793
|
async onDataButtonDown(ev) {
|
|
191516
191794
|
if (undefined === ev.viewport) {
|
|
191517
|
-
return
|
|
191795
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191518
191796
|
}
|
|
191519
191797
|
else if (undefined === this.viewport) {
|
|
191520
191798
|
if (!ev.viewport.view.allow3dManipulations())
|
|
191521
|
-
return
|
|
191799
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191522
191800
|
this.viewport = ev.viewport;
|
|
191523
191801
|
}
|
|
191524
191802
|
else if (this.viewport.view.iModel !== ev.viewport.view.iModel) {
|
|
191525
191803
|
if (this._haveEyePt)
|
|
191526
|
-
return
|
|
191804
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191527
191805
|
this.viewport = ev.viewport;
|
|
191528
|
-
return
|
|
191806
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191529
191807
|
}
|
|
191530
191808
|
if (this._haveEyePt) {
|
|
191531
191809
|
this._targetPtWorld.setFrom(ev.point);
|
|
@@ -191538,13 +191816,13 @@ class SetupWalkCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.P
|
|
|
191538
191816
|
this._haveEyePt = true;
|
|
191539
191817
|
this.setupAndPromptForNextAction();
|
|
191540
191818
|
}
|
|
191541
|
-
return
|
|
191819
|
+
return _Tool__WEBPACK_IMPORTED_MODULE_17__.EventHandled.Yes;
|
|
191542
191820
|
}
|
|
191543
191821
|
async onMouseMotion(ev) {
|
|
191544
191822
|
if (!this._haveEyePt)
|
|
191545
191823
|
return;
|
|
191546
191824
|
this._targetPtWorld.setFrom(ev.point);
|
|
191547
|
-
|
|
191825
|
+
_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.viewManager.invalidateDecorationsAllViews();
|
|
191548
191826
|
}
|
|
191549
191827
|
static getFigurePoints() {
|
|
191550
191828
|
const figurePts = [];
|
|
@@ -191599,17 +191877,17 @@ class SetupWalkCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.P
|
|
|
191599
191877
|
if (undefined === transform)
|
|
191600
191878
|
return;
|
|
191601
191879
|
const figurePts = this.getFigurePoints();
|
|
191602
|
-
const color =
|
|
191880
|
+
const color = _EditManipulator__WEBPACK_IMPORTED_MODULE_15__.EditManipulator.HandleUtils.adjustForBackgroundColor(_itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef.black, vp);
|
|
191603
191881
|
const fill = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef.from(255, 245, 225, 100);
|
|
191604
|
-
const builderShadow = context.createGraphicBuilder(
|
|
191882
|
+
const builderShadow = context.createGraphicBuilder(_common_render_GraphicType__WEBPACK_IMPORTED_MODULE_20__.GraphicType.WorldOverlay);
|
|
191605
191883
|
builderShadow.setSymbology(color, _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef.black.withAlpha(30), 1 /* ViewHandleWeight.Thin */);
|
|
191606
191884
|
builderShadow.addArc(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Arc3d.createXY(groundPt, eyeHeight * 0.22), true, true);
|
|
191607
191885
|
context.addDecorationFromBuilder(builderShadow);
|
|
191608
|
-
const builderHid = context.createGraphicBuilder(
|
|
191886
|
+
const builderHid = context.createGraphicBuilder(_common_render_GraphicType__WEBPACK_IMPORTED_MODULE_20__.GraphicType.WorldDecoration, transform);
|
|
191609
191887
|
builderHid.setSymbology(color, fill, 1 /* ViewHandleWeight.Thin */);
|
|
191610
191888
|
builderHid.addShape(figurePts); // Copies points...
|
|
191611
191889
|
context.addDecorationFromBuilder(builderHid);
|
|
191612
|
-
const builderVis = context.createGraphicBuilder(
|
|
191890
|
+
const builderVis = context.createGraphicBuilder(_common_render_GraphicType__WEBPACK_IMPORTED_MODULE_20__.GraphicType.WorldOverlay, transform);
|
|
191613
191891
|
builderVis.setSymbology(color, color, 2 /* ViewHandleWeight.Normal */);
|
|
191614
191892
|
builderVis.addLineString(figurePts); // Owns points...
|
|
191615
191893
|
context.addDecorationFromBuilder(builderVis);
|
|
@@ -191617,7 +191895,7 @@ class SetupWalkCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.P
|
|
|
191617
191895
|
decorate(context) {
|
|
191618
191896
|
if (!this._haveEyePt || undefined === this.viewport)
|
|
191619
191897
|
return;
|
|
191620
|
-
SetupWalkCameraTool.drawFigure(context, this.viewport, this._eyePtWorld,
|
|
191898
|
+
SetupWalkCameraTool.drawFigure(context, this.viewport, this._eyePtWorld, _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkEyeHeight);
|
|
191621
191899
|
SetupCameraTool.drawCameraFrustum(context, this.viewport, this.getAdjustedEyePoint(), this.getAdjustedTargetPoint(), this._eyePtWorld, this._targetPtWorld);
|
|
191622
191900
|
}
|
|
191623
191901
|
decorateSuspended(context) { this.decorate(context); }
|
|
@@ -191630,8 +191908,8 @@ class SetupWalkCameraTool extends _PrimitiveTool__WEBPACK_IMPORTED_MODULE_17__.P
|
|
|
191630
191908
|
return;
|
|
191631
191909
|
const eyePoint = this.getAdjustedEyePoint();
|
|
191632
191910
|
const targetPoint = this.getAdjustedTargetPoint();
|
|
191633
|
-
const lensAngle =
|
|
191634
|
-
if (
|
|
191911
|
+
const lensAngle = _ToolSettings__WEBPACK_IMPORTED_MODULE_19__.ToolSettings.walkCameraAngle;
|
|
191912
|
+
if (_ViewStatus__WEBPACK_IMPORTED_MODULE_14__.ViewStatus.Success !== view.lookAt({ eyePoint, targetPoint, upVector: _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ(), lensAngle }))
|
|
191635
191913
|
return;
|
|
191636
191914
|
vp.synchWithView({ animateFrustumChange: true });
|
|
191637
191915
|
}
|
|
@@ -208986,7 +209264,7 @@ class CurveFactory {
|
|
|
208986
209264
|
return undefined;
|
|
208987
209265
|
}
|
|
208988
209266
|
/**
|
|
208989
|
-
* Construct a sequence of alternating lines and arcs with
|
|
209267
|
+
* Construct a sequence of alternating lines and arcs with each arc creating a smooth transition between consecutive edges.
|
|
208990
209268
|
* * If the radius parameter is a number, that radius is used throughout.
|
|
208991
209269
|
* * If the radius parameter is an array of numbers, `radius[i]` is applied at `point[i]`.
|
|
208992
209270
|
* * A zero radius for any point indicates to leave the as a simple corner.
|
|
@@ -208999,20 +209277,18 @@ class CurveFactory {
|
|
|
208999
209277
|
return this.createFilletsInLineString(new _geometry3d_Point3dArrayCarrier__WEBPACK_IMPORTED_MODULE_4__.Point3dArrayCarrier(points), radius, allowCuspOrOptions);
|
|
209000
209278
|
if (points instanceof _LineString3d__WEBPACK_IMPORTED_MODULE_5__.LineString3d)
|
|
209001
209279
|
return this.createFilletsInLineString(points.packedPoints, radius, allowCuspOrOptions);
|
|
209002
|
-
|
|
209003
|
-
|
|
209004
|
-
|
|
209005
|
-
|
|
209006
|
-
|
|
209007
|
-
|
|
209008
|
-
allowCusp = allowCuspOrOptions.allowCusp ?? true;
|
|
209009
|
-
filletClosure = allowCuspOrOptions.filletClosure ?? false;
|
|
209010
|
-
}
|
|
209280
|
+
const haveBoolean = typeof allowCuspOrOptions === "boolean";
|
|
209281
|
+
const allowCusp = haveBoolean ? allowCuspOrOptions : allowCuspOrOptions.allowCusp ?? true;
|
|
209282
|
+
const filletClosure = haveBoolean ? false : allowCuspOrOptions.filletClosure ?? false;
|
|
209283
|
+
const closureTolerance = haveBoolean ? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance : allowCuspOrOptions.closureTolerance ?? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance;
|
|
209284
|
+
const cuspTolerance = haveBoolean ? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance : allowCuspOrOptions.cuspTolerance ?? _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance;
|
|
209285
|
+
const cuspSegments = haveBoolean ? true : allowCuspOrOptions.cuspSegments ?? true;
|
|
209011
209286
|
let n = points.length;
|
|
209012
|
-
if (filletClosure && points.almostEqualIndexIndex(0, n - 1))
|
|
209287
|
+
if (filletClosure && points.almostEqualIndexIndex(0, n - 1, closureTolerance))
|
|
209013
209288
|
n--; // ignore closure point
|
|
209014
209289
|
if (n <= 1)
|
|
209015
209290
|
return undefined;
|
|
209291
|
+
// create blend data at each vertex
|
|
209016
209292
|
const pointA = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create();
|
|
209017
209293
|
const pointB = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create();
|
|
209018
209294
|
const pointC = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__.Point3d.create();
|
|
@@ -209033,17 +209309,41 @@ class CurveFactory {
|
|
|
209033
209309
|
}
|
|
209034
209310
|
}
|
|
209035
209311
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(blendArray.length === n);
|
|
209036
|
-
|
|
209037
|
-
|
|
209038
|
-
|
|
209039
|
-
|
|
209040
|
-
|
|
209041
|
-
|
|
209042
|
-
|
|
209043
|
-
|
|
209044
|
-
|
|
209045
|
-
|
|
209046
|
-
|
|
209312
|
+
// For each edge, look at its 0|1|2 fillets to determine whether/which to suppress.
|
|
209313
|
+
// When a cusp is generated by 2 fillets, use this HEURISTIC:
|
|
209314
|
+
// * Prefer to keep the fillet that results in the smaller allowable cusp segment.
|
|
209315
|
+
// * If by itself, each fillet results in a cusp segment of equal allowable length (possibly zero), keep the first.
|
|
209316
|
+
const edgeHasCusp = (fillet0, fillet1) => fillet0.fraction12 + fillet1.fraction10 > 1;
|
|
209317
|
+
const cuspSegmentLength = (checkedEdgeIndex, fillet0, fillet1) => points.distanceUncheckedIndexIndex(checkedEdgeIndex, points.cyclicIndex(checkedEdgeIndex + 1)) * (fillet0.fraction12 + fillet1.fraction10 - 1);
|
|
209318
|
+
const filletOvershootsEdge = (fillet, filletIndex) => filletIndex === 0 ? fillet.fraction12 > 1 : fillet.fraction10 > 1;
|
|
209319
|
+
const cuspNeedsRemoval = (checkedEdgeIndex, fillet0, fillet1) => edgeHasCusp(fillet0, fillet1) && (!allowCusp || cuspSegmentLength(checkedEdgeIndex, fillet0, fillet1) > cuspTolerance);
|
|
209320
|
+
const removeFillet = (fillet) => { fillet.fraction10 = fillet.fraction12 = 0; fillet.arc = undefined; };
|
|
209321
|
+
for (let iEdge = 0; iEdge < (filletClosure ? n : n - 1); iEdge++) {
|
|
209322
|
+
const fillet0 = blendArray[iEdge];
|
|
209323
|
+
const fillet1 = blendArray[_Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.modulo(iEdge + 1, n)];
|
|
209324
|
+
if (cuspNeedsRemoval(iEdge, fillet0, fillet1)) {
|
|
209325
|
+
const fillet0OvershootsEdge = filletOvershootsEdge(fillet0, 0);
|
|
209326
|
+
const fillet1OvershootsEdge = filletOvershootsEdge(fillet1, 1);
|
|
209327
|
+
// prefer to remove just one fillet
|
|
209328
|
+
if (fillet0OvershootsEdge && !fillet1OvershootsEdge) {
|
|
209329
|
+
removeFillet(fillet0);
|
|
209330
|
+
}
|
|
209331
|
+
else if (!fillet0OvershootsEdge && fillet1OvershootsEdge) {
|
|
209332
|
+
removeFillet(fillet1);
|
|
209333
|
+
}
|
|
209334
|
+
else if (!fillet0OvershootsEdge && !fillet1OvershootsEdge) {
|
|
209335
|
+
removeFillet(fillet1); // fillets intersect (arbitrary choice)
|
|
209336
|
+
}
|
|
209337
|
+
else if (fillet1.fraction10 < fillet0.fraction12) {
|
|
209338
|
+
removeFillet(fillet0); // fillet1 yields smaller cusp segment
|
|
209339
|
+
}
|
|
209340
|
+
else {
|
|
209341
|
+
removeFillet(fillet1); // fillet0 yields smaller cusp segment, or they are equal (arbitrary choice)
|
|
209342
|
+
}
|
|
209343
|
+
// re-evaluate the edge after removal of a fillet; if a disallowed cusp persists, remove the other fillet
|
|
209344
|
+
if (cuspNeedsRemoval(iEdge, fillet0, fillet1)) {
|
|
209345
|
+
removeFillet(fillet0);
|
|
209346
|
+
removeFillet(fillet1);
|
|
209047
209347
|
}
|
|
209048
209348
|
}
|
|
209049
209349
|
}
|
|
@@ -209053,7 +209353,7 @@ class CurveFactory {
|
|
|
209053
209353
|
path.tryAddChild(b0.arc);
|
|
209054
209354
|
if (i + 1 < n || filletClosure) {
|
|
209055
209355
|
const b1 = blendArray[_Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.modulo(i + 1, n)];
|
|
209056
|
-
this.addPartialSegment(path,
|
|
209356
|
+
this.addPartialSegment(path, cuspSegments, b0.point, b1.point, b0.fraction12, 1 - b1.fraction10);
|
|
209057
209357
|
}
|
|
209058
209358
|
}
|
|
209059
209359
|
return path;
|
|
@@ -217287,13 +217587,13 @@ class RegionOps {
|
|
|
217287
217587
|
}
|
|
217288
217588
|
/**
|
|
217289
217589
|
* Look for and simplify:
|
|
217290
|
-
* * Contiguous
|
|
217590
|
+
* * Contiguous [[LineSegment3d]] and [[LineString3d]] objects:
|
|
217291
217591
|
* * collect all points
|
|
217292
217592
|
* * eliminate duplicated points
|
|
217293
217593
|
* * eliminate points colinear with surrounding points
|
|
217294
|
-
*
|
|
217594
|
+
* * Contiguous concentric circular or elliptic [[Arc3d]] objects:
|
|
217295
217595
|
* * combine angular ranges
|
|
217296
|
-
* * This function can be used to compress adjacent
|
|
217596
|
+
* * This function can be used to compress adjacent [[LineSegment3d]]s into a [[LineString3d]].
|
|
217297
217597
|
* @param curves Path or loop (or larger collection containing paths and loops) to be simplified
|
|
217298
217598
|
* @param options options for tolerance and selective simplification.
|
|
217299
217599
|
*/
|
|
@@ -237582,7 +237882,7 @@ class IndexedXYZCollection {
|
|
|
237582
237882
|
}
|
|
237583
237883
|
/** Adjust index into range by modulo with the length. */
|
|
237584
237884
|
cyclicIndex(i) {
|
|
237585
|
-
return (i
|
|
237885
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.modulo(i, this.length);
|
|
237586
237886
|
}
|
|
237587
237887
|
/** Return the range of the points. */
|
|
237588
237888
|
getRange(transform, result) {
|
|
@@ -332197,7 +332497,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
332197
332497
|
/***/ ((module) => {
|
|
332198
332498
|
|
|
332199
332499
|
"use strict";
|
|
332200
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.11.0-dev.
|
|
332500
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.11.0-dev.14","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 && npm run -s copy:draco","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 ES2022 --outDir lib/esm","clean":"rimraf -g 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","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./lib/public/scripts","docs":"betools docs --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts && npm run -s extract","extract":"betools extract --fileExt=ts --extractFrom=./src/test/example-code --recursive --out=../../generated-docs/extract","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","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:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//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":{"@bentley/aec-units-schema":"^1.0.3","@bentley/formats-schema":"^1.0.0","@bentley/units-schema":"^1.0.10","@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/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/node":"~20.17.0","@types/sinon":"^17.0.2","@vitest/browser-playwright":"^4.1.8","@vitest/coverage-v8":"^4.1.8","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","vitest":"^4.1.8","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//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/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"~4.3.4","@loaders.gl/draco":"~4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
|
|
332201
332501
|
|
|
332202
332502
|
/***/ })
|
|
332203
332503
|
|