bruce-cesium 5.6.8 → 5.7.0
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/dist/bruce-cesium.es5.js +175 -42
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +174 -41
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/render-managers/entities/entities-render-manager.js +12 -9
- package/dist/lib/rendering/render-managers/entities/entities-render-manager.js.map +1 -1
- package/dist/lib/rendering/view-render-engine.js +161 -31
- package/dist/lib/rendering/view-render-engine.js.map +1 -1
- package/dist/types/bruce-cesium.d.ts +1 -1
- package/package.json +2 -2
package/dist/bruce-cesium.es5.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BruceEvent, Cartes, Entity as Entity$1, ProjectViewTile, Carto, Geometry, MathUtils, LRUCache, Api, Calculator, ClientFile, EntityTag, EntityType, ObjectUtils, Style, DelayQueue, EntityLod, Bounds, ZoomControl, EntityRelationType, ENVIRONMENT, EntityHistoricData, Tileset, EntityCoords, DataLab, EntitySource, MenuItem, EntityRelation, ProgramKey, ProjectView, ProjectViewBookmark, Camera, ProjectViewLegacyTile, EntityAttachment, EntityAttachmentType, EntityAttribute, AbstractApi, Session } from 'bruce-models';
|
|
2
2
|
import * as Cesium from 'cesium';
|
|
3
|
-
import { Cartographic,
|
|
3
|
+
import { Cartographic, Cartesian2, Math as Math$1, Cartesian3, CallbackProperty, Color, HeightReference, Rectangle, JulianDate, Entity, DistanceDisplayCondition, HorizontalOrigin, VerticalOrigin, ConstantProperty, ClassificationType, ConstantPositionProperty, ArcType, CornerType, ShadowMode, PolygonHierarchy, PolylineGraphics, ColorMaterialProperty, ColorBlendMode, HeadingPitchRoll, Transforms, Model, Primitive, Cesium3DTileFeature, SceneMode, GeoJsonDataSource, Cesium3DTileStyle, HeadingPitchRange, Cesium3DTileColorBlendMode, Ion, KmlDataSource, Quaternion, Matrix3, Matrix4, SceneTransforms, OrthographicFrustum, EasingFunction, NearFarScalar, EllipsoidTerrainProvider, IonImageryProvider, createWorldImagery, createWorldImageryAsync, BingMapsImageryProvider, BingMapsStyle, MapboxImageryProvider, MapboxStyleImageryProvider, ArcGisMapServerImageryProvider, OpenStreetMapImageryProvider, UrlTemplateImageryProvider, GridImageryProvider, GeographicTilingScheme, ImageryLayer, TileMapServiceImageryProvider, CesiumTerrainProvider, IonResource, Cesium3DTileset, CesiumInspector, defined, ClockRange, EllipsoidGeodesic, sampleTerrainMostDetailed, PolygonPipeline, BoundingSphere, GeometryInstance, ModelGraphics, PolygonGraphics, CorridorGraphics, PointGraphics, BillboardGraphics, EllipseGraphics, PolylineDashMaterialProperty, ScreenSpaceEventHandler, ScreenSpaceEventType, CzmlDataSource, Intersect, Fullscreen } from 'cesium';
|
|
4
4
|
|
|
5
5
|
const TIME_LAG = 300;
|
|
6
6
|
const POSITION_CHECK_TIMER = 950;
|
|
@@ -13720,7 +13720,7 @@ var EntitiesRenderManager;
|
|
|
13720
13720
|
* @returns
|
|
13721
13721
|
*/
|
|
13722
13722
|
async renderAsIndividuals(entities, force = false) {
|
|
13723
|
-
var _a, _b, _c, _d, _e, _f, _g, _h
|
|
13723
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
13724
13724
|
// Entity ID -> historic records array.
|
|
13725
13725
|
// We load this as extra information when rendering historic records.
|
|
13726
13726
|
// This way we know what to animate towards as time changes.
|
|
@@ -13803,14 +13803,16 @@ var EntitiesRenderManager;
|
|
|
13803
13803
|
entityId: id,
|
|
13804
13804
|
menuItemId: this.item.id
|
|
13805
13805
|
});
|
|
13806
|
+
// The baseline data source must be editable.
|
|
13807
|
+
const canEdit = !((_e = entity.Bruce.Outline) === null || _e === void 0 ? void 0 : _e.find(x => x.Baseline && !x.Editable));
|
|
13806
13808
|
const visual = rego === null || rego === void 0 ? void 0 : rego.visual;
|
|
13807
13809
|
if (!visual || visual != cEntity) {
|
|
13808
13810
|
const wasClustered = this.clustering ? this.clustering.AddEntity(id, cEntity, false) : false;
|
|
13809
|
-
const tagIds =
|
|
13811
|
+
const tagIds = entity.Bruce["Layer.ID"];
|
|
13810
13812
|
const rego = {
|
|
13811
|
-
canEdit:
|
|
13813
|
+
canEdit: canEdit,
|
|
13812
13814
|
entityId: id,
|
|
13813
|
-
schema:
|
|
13815
|
+
schema: entity.Bruce.Schema,
|
|
13814
13816
|
menuItemId: this.item.id,
|
|
13815
13817
|
menuItemType: this.item.Type,
|
|
13816
13818
|
visual: cEntity,
|
|
@@ -13821,7 +13823,7 @@ var EntitiesRenderManager;
|
|
|
13821
13823
|
overrideShow: wasClustered ? false : null,
|
|
13822
13824
|
name: cEntity.name,
|
|
13823
13825
|
cdn: this.item.cdnEnabled,
|
|
13824
|
-
outline:
|
|
13826
|
+
outline: entity.Bruce.Outline
|
|
13825
13827
|
};
|
|
13826
13828
|
this.visualsManager.AddRego({
|
|
13827
13829
|
rego,
|
|
@@ -13832,10 +13834,11 @@ var EntitiesRenderManager;
|
|
|
13832
13834
|
rego.name = cEntity.name;
|
|
13833
13835
|
rego.visual = cEntity;
|
|
13834
13836
|
rego.entityTypeId = entity.Bruce["EntityType.ID"];
|
|
13835
|
-
rego.tagIds =
|
|
13836
|
-
rego.outline = (
|
|
13837
|
+
rego.tagIds = entity.Bruce["Layer.ID"] ? [].concat(entity.Bruce["Layer.ID"]) : [];
|
|
13838
|
+
rego.outline = (_f = entity.Bruce) === null || _f === void 0 ? void 0 : _f.Outline;
|
|
13837
13839
|
rego.cdn = this.item.cdnEnabled;
|
|
13838
|
-
rego.schema = (
|
|
13840
|
+
rego.schema = (_g = entity.Bruce) === null || _g === void 0 ? void 0 : _g.Schema;
|
|
13841
|
+
rego.canEdit = canEdit;
|
|
13839
13842
|
// Marked as stale meaning some change was performed that requires a refresh.
|
|
13840
13843
|
// This usually means a new sibling was added that we need to update.
|
|
13841
13844
|
if (rego.stale) {
|
|
@@ -13865,7 +13868,7 @@ var EntitiesRenderManager;
|
|
|
13865
13868
|
menuItemId: this.item.id,
|
|
13866
13869
|
requestRender: false
|
|
13867
13870
|
});
|
|
13868
|
-
(
|
|
13871
|
+
(_h = this.clustering) === null || _h === void 0 ? void 0 : _h.RemoveEntity(id, false);
|
|
13869
13872
|
}
|
|
13870
13873
|
}
|
|
13871
13874
|
this.viewer.scene.requestRender();
|
|
@@ -25417,6 +25420,50 @@ function newIteration$1(viewer) {
|
|
|
25417
25420
|
function assertIteration$1(viewer, iteration) {
|
|
25418
25421
|
return viewer[ITERATION_KEY$1] == iteration;
|
|
25419
25422
|
}
|
|
25423
|
+
function modelSpaceToPosition(point) {
|
|
25424
|
+
let lat = 0;
|
|
25425
|
+
let lon = 0;
|
|
25426
|
+
let alt = 0;
|
|
25427
|
+
{
|
|
25428
|
+
if (point) {
|
|
25429
|
+
if (isNaN(point.x) || point.x == null) {
|
|
25430
|
+
point.x = 0;
|
|
25431
|
+
}
|
|
25432
|
+
if (isNaN(point.y) || point.y == null) {
|
|
25433
|
+
point.y = 0;
|
|
25434
|
+
}
|
|
25435
|
+
if (isNaN(point.z) || point.z == null) {
|
|
25436
|
+
point.z = 0;
|
|
25437
|
+
}
|
|
25438
|
+
}
|
|
25439
|
+
if (point && (point.x !== 0 || point.y !== 0 || point.z !== 0)) {
|
|
25440
|
+
try {
|
|
25441
|
+
// Create a reference position at 0,0,0 - matching the origin used in PositionToModelSpace.
|
|
25442
|
+
const originPosition = Cartesian3.fromDegrees(0, 0, 0);
|
|
25443
|
+
// Get the east-north-up (ENU) reference frame at the origin.
|
|
25444
|
+
const enuTransform = Transforms.eastNorthUpToFixedFrame(originPosition);
|
|
25445
|
+
// Create the relative position.
|
|
25446
|
+
const relativePosition = new Cartesian3(point.x, point.y, point.z);
|
|
25447
|
+
// Transform the relative position to the model's lat/lon/alt.
|
|
25448
|
+
const modelPosition = new Cartesian3();
|
|
25449
|
+
Matrix4.multiplyByPoint(enuTransform, relativePosition, modelPosition);
|
|
25450
|
+
// Convert the Cartesian3 position to lat/lon/alt.
|
|
25451
|
+
const carto = Cartographic.fromCartesian(modelPosition);
|
|
25452
|
+
lat = Math$1.toDegrees(carto.latitude);
|
|
25453
|
+
lon = Math$1.toDegrees(carto.longitude);
|
|
25454
|
+
alt = carto.height;
|
|
25455
|
+
}
|
|
25456
|
+
catch (e) {
|
|
25457
|
+
console.error("Error converting model space to position:", e);
|
|
25458
|
+
}
|
|
25459
|
+
}
|
|
25460
|
+
}
|
|
25461
|
+
return {
|
|
25462
|
+
latitude: lat,
|
|
25463
|
+
longitude: lon,
|
|
25464
|
+
altitude: alt
|
|
25465
|
+
};
|
|
25466
|
+
}
|
|
25420
25467
|
/**
|
|
25421
25468
|
* Renders DATA_VERSION = 1 navigator.
|
|
25422
25469
|
* param iteration
|
|
@@ -25607,16 +25654,32 @@ async function renderNavigator(iteration, params, bookmark, view, getters) {
|
|
|
25607
25654
|
contentType = ProjectViewBookmark.EContentType.WEB_3D;
|
|
25608
25655
|
}
|
|
25609
25656
|
let camera = ((_d = bookmark === null || bookmark === void 0 ? void 0 : bookmark.Camera) !== null && _d !== void 0 ? _d : {});
|
|
25610
|
-
if (
|
|
25611
|
-
camera
|
|
25612
|
-
|
|
25613
|
-
|
|
25614
|
-
|
|
25615
|
-
|
|
25616
|
-
|
|
25617
|
-
|
|
25618
|
-
|
|
25619
|
-
|
|
25657
|
+
if (contentType == ProjectViewBookmark.EContentType.WEB_3D_MODEL_SPACE) {
|
|
25658
|
+
if (!Cartes.ValidateCartes3(camera)) {
|
|
25659
|
+
camera = {
|
|
25660
|
+
altitude: 500,
|
|
25661
|
+
latitude: 0,
|
|
25662
|
+
longitude: 0,
|
|
25663
|
+
heading: 0,
|
|
25664
|
+
pitch: -90,
|
|
25665
|
+
roll: 0,
|
|
25666
|
+
cameraFrustum: Camera.EFrustum.Perspective,
|
|
25667
|
+
transition: 2000
|
|
25668
|
+
};
|
|
25669
|
+
}
|
|
25670
|
+
}
|
|
25671
|
+
else {
|
|
25672
|
+
if (!Carto.ValidateCarto(camera)) {
|
|
25673
|
+
camera = {
|
|
25674
|
+
...camera,
|
|
25675
|
+
altitude: (_e = defaults.camera) === null || _e === void 0 ? void 0 : _e.altitude,
|
|
25676
|
+
latitude: (_f = defaults.camera) === null || _f === void 0 ? void 0 : _f.latitude,
|
|
25677
|
+
longitude: (_g = defaults.camera) === null || _g === void 0 ? void 0 : _g.longitude,
|
|
25678
|
+
heading: (_h = defaults.camera) === null || _h === void 0 ? void 0 : _h.heading,
|
|
25679
|
+
pitch: (_j = defaults.camera) === null || _j === void 0 ? void 0 : _j.pitch,
|
|
25680
|
+
roll: (_k = defaults.camera) === null || _k === void 0 ? void 0 : _k.roll
|
|
25681
|
+
};
|
|
25682
|
+
}
|
|
25620
25683
|
}
|
|
25621
25684
|
let newLens = camera.cameraFrustum;
|
|
25622
25685
|
if (newLens == null) {
|
|
@@ -25646,8 +25709,24 @@ async function renderNavigator(iteration, params, bookmark, view, getters) {
|
|
|
25646
25709
|
// TODO: Need global default.
|
|
25647
25710
|
transition = 2000;
|
|
25648
25711
|
}
|
|
25649
|
-
|
|
25650
|
-
|
|
25712
|
+
let pos3d;
|
|
25713
|
+
if (contentType == ProjectViewBookmark.EContentType.WEB_3D_MODEL_SPACE) {
|
|
25714
|
+
if (Cartes.ValidateCartes3(camera)) {
|
|
25715
|
+
const point = modelSpaceToPosition(camera);
|
|
25716
|
+
if (point && Carto.ValidateCarto(point)) {
|
|
25717
|
+
pos3d = Cartesian3.fromDegrees(+point.longitude, +point.latitude, +point.altitude);
|
|
25718
|
+
}
|
|
25719
|
+
}
|
|
25720
|
+
else if (Carto.ValidateCarto(camera)) {
|
|
25721
|
+
pos3d = Cartesian3.fromDegrees(+camera.longitude, +camera.latitude, +camera.altitude);
|
|
25722
|
+
}
|
|
25723
|
+
}
|
|
25724
|
+
else {
|
|
25725
|
+
if (Carto.ValidateCarto(camera)) {
|
|
25726
|
+
pos3d = Cartesian3.fromDegrees(+camera.longitude, +camera.latitude, +camera.altitude);
|
|
25727
|
+
}
|
|
25728
|
+
}
|
|
25729
|
+
if (pos3d) {
|
|
25651
25730
|
if (
|
|
25652
25731
|
// Moving into model-space.
|
|
25653
25732
|
(contentType == ProjectViewBookmark.EContentType.WEB_3D_MODEL_SPACE) ||
|
|
@@ -25658,12 +25737,12 @@ async function renderNavigator(iteration, params, bookmark, view, getters) {
|
|
|
25658
25737
|
if (!cameraPos3d || (cameraPos3d.x == 0 && cameraPos3d.y == 0 && cameraPos3d.z == 0)) {
|
|
25659
25738
|
transition = 0;
|
|
25660
25739
|
}
|
|
25661
|
-
else if (Cartesian3.distance(cameraPos3d,
|
|
25740
|
+
else if (Cartesian3.distance(cameraPos3d, pos3d) > 10000) {
|
|
25662
25741
|
transition = 0;
|
|
25663
25742
|
}
|
|
25664
25743
|
}
|
|
25665
25744
|
scene.camera.flyTo({
|
|
25666
|
-
destination:
|
|
25745
|
+
destination: pos3d,
|
|
25667
25746
|
orientation: {
|
|
25668
25747
|
heading: Math$1.toRadians(+camera.heading),
|
|
25669
25748
|
pitch: Math$1.toRadians(+camera.pitch),
|
|
@@ -26144,7 +26223,7 @@ var ViewRenderEngine;
|
|
|
26144
26223
|
* @param params
|
|
26145
26224
|
*/
|
|
26146
26225
|
async function FlyTo(params) {
|
|
26147
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
26226
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
|
26148
26227
|
if (!params.manager && params.viewer) {
|
|
26149
26228
|
params.manager = ViewerUtils.GetManager({
|
|
26150
26229
|
viewer: params.viewer,
|
|
@@ -26178,21 +26257,45 @@ var ViewRenderEngine;
|
|
|
26178
26257
|
const scene = viewer.scene;
|
|
26179
26258
|
const vSettings = view.Settings;
|
|
26180
26259
|
const defaults = (_a = vSettings.defaults) !== null && _a !== void 0 ? _a : {};
|
|
26181
|
-
|
|
26182
|
-
|
|
26183
|
-
|
|
26184
|
-
|
|
26185
|
-
|
|
26186
|
-
|
|
26187
|
-
|
|
26188
|
-
|
|
26189
|
-
|
|
26190
|
-
|
|
26191
|
-
|
|
26260
|
+
const bSettings = ((_b = bookmark === null || bookmark === void 0 ? void 0 : bookmark.Settings) !== null && _b !== void 0 ? _b : {});
|
|
26261
|
+
let contentType = bSettings.contentType;
|
|
26262
|
+
if (!contentType && ((_c = defaults === null || defaults === void 0 ? void 0 : defaults.settings) === null || _c === void 0 ? void 0 : _c.contentType)) {
|
|
26263
|
+
contentType = defaults.settings.contentType;
|
|
26264
|
+
}
|
|
26265
|
+
if (contentType == null) {
|
|
26266
|
+
contentType = ProjectViewBookmark.EContentType.WEB_3D;
|
|
26267
|
+
}
|
|
26268
|
+
let camera = ((_d = bookmark === null || bookmark === void 0 ? void 0 : bookmark.Camera) !== null && _d !== void 0 ? _d : {});
|
|
26269
|
+
if (contentType == ProjectViewBookmark.EContentType.WEB_3D_MODEL_SPACE) {
|
|
26270
|
+
if (!Cartes.ValidateCartes3(camera)) {
|
|
26271
|
+
camera = {
|
|
26272
|
+
altitude: 500,
|
|
26273
|
+
latitude: 0,
|
|
26274
|
+
longitude: 0,
|
|
26275
|
+
heading: 0,
|
|
26276
|
+
pitch: -90,
|
|
26277
|
+
roll: 0,
|
|
26278
|
+
cameraFrustum: Camera.EFrustum.Perspective,
|
|
26279
|
+
transition: 2000
|
|
26280
|
+
};
|
|
26281
|
+
}
|
|
26282
|
+
}
|
|
26283
|
+
else {
|
|
26284
|
+
if (!Carto.ValidateCarto(camera)) {
|
|
26285
|
+
camera = {
|
|
26286
|
+
...camera,
|
|
26287
|
+
altitude: (_e = defaults.camera) === null || _e === void 0 ? void 0 : _e.altitude,
|
|
26288
|
+
latitude: (_f = defaults.camera) === null || _f === void 0 ? void 0 : _f.latitude,
|
|
26289
|
+
longitude: (_g = defaults.camera) === null || _g === void 0 ? void 0 : _g.longitude,
|
|
26290
|
+
heading: (_h = defaults.camera) === null || _h === void 0 ? void 0 : _h.heading,
|
|
26291
|
+
pitch: (_j = defaults.camera) === null || _j === void 0 ? void 0 : _j.pitch,
|
|
26292
|
+
roll: (_k = defaults.camera) === null || _k === void 0 ? void 0 : _k.roll
|
|
26293
|
+
};
|
|
26294
|
+
}
|
|
26192
26295
|
}
|
|
26193
26296
|
let newLens = camera.cameraFrustum;
|
|
26194
26297
|
if (newLens == null) {
|
|
26195
|
-
newLens = (
|
|
26298
|
+
newLens = (_l = defaults.camera) === null || _l === void 0 ? void 0 : _l.cameraFrustum;
|
|
26196
26299
|
}
|
|
26197
26300
|
if (newLens == null) {
|
|
26198
26301
|
// TODO: Need global default.
|
|
@@ -26211,16 +26314,46 @@ var ViewRenderEngine;
|
|
|
26211
26314
|
}
|
|
26212
26315
|
let transition = params.skipTransition ? 0 : shouldBe2d === curIs2d ? camera.transition : 0;
|
|
26213
26316
|
if (transition == null) {
|
|
26214
|
-
transition = (
|
|
26317
|
+
transition = (_m = defaults.camera) === null || _m === void 0 ? void 0 : _m.transition;
|
|
26215
26318
|
}
|
|
26216
26319
|
if (transition == null) {
|
|
26217
26320
|
// TODO: Need global default.
|
|
26218
26321
|
transition = 2000;
|
|
26219
26322
|
}
|
|
26220
|
-
|
|
26221
|
-
|
|
26323
|
+
let pos3d;
|
|
26324
|
+
if (contentType == ProjectViewBookmark.EContentType.WEB_3D_MODEL_SPACE) {
|
|
26325
|
+
if (Cartes.ValidateCartes3(camera)) {
|
|
26326
|
+
const point = modelSpaceToPosition(camera);
|
|
26327
|
+
if (point && Carto.ValidateCarto(point)) {
|
|
26328
|
+
pos3d = Cartesian3.fromDegrees(+point.longitude, +point.latitude, +point.altitude);
|
|
26329
|
+
}
|
|
26330
|
+
}
|
|
26331
|
+
else if (Carto.ValidateCarto(camera)) {
|
|
26332
|
+
pos3d = Cartesian3.fromDegrees(+camera.longitude, +camera.latitude, +camera.altitude);
|
|
26333
|
+
}
|
|
26334
|
+
}
|
|
26335
|
+
else {
|
|
26336
|
+
if (Carto.ValidateCarto(camera)) {
|
|
26337
|
+
pos3d = Cartesian3.fromDegrees(+camera.longitude, +camera.latitude, +camera.altitude);
|
|
26338
|
+
}
|
|
26339
|
+
}
|
|
26340
|
+
if (pos3d) {
|
|
26341
|
+
if (
|
|
26342
|
+
// Moving into model-space.
|
|
26343
|
+
(contentType == ProjectViewBookmark.EContentType.WEB_3D_MODEL_SPACE) ||
|
|
26344
|
+
// Moving away from model-space.
|
|
26345
|
+
// @ts-expect-error
|
|
26346
|
+
(contentType != ProjectViewBookmark.EContentType.WEB_3D_MODEL_SPACE && viewer[MODEL_SPACE_FLAG] == true)) {
|
|
26347
|
+
const cameraPos3d = viewer.camera.position;
|
|
26348
|
+
if (!cameraPos3d || (cameraPos3d.x == 0 && cameraPos3d.y == 0 && cameraPos3d.z == 0)) {
|
|
26349
|
+
transition = 0;
|
|
26350
|
+
}
|
|
26351
|
+
else if (Cartesian3.distance(cameraPos3d, pos3d) > 10000) {
|
|
26352
|
+
transition = 0;
|
|
26353
|
+
}
|
|
26354
|
+
}
|
|
26222
26355
|
scene.camera.flyTo({
|
|
26223
|
-
destination:
|
|
26356
|
+
destination: pos3d,
|
|
26224
26357
|
orientation: {
|
|
26225
26358
|
heading: Math$1.toRadians(+camera.heading),
|
|
26226
26359
|
pitch: Math$1.toRadians(+camera.pitch),
|
|
@@ -31961,7 +32094,7 @@ class WidgetViewBar extends Widget.AWidget {
|
|
|
31961
32094
|
}
|
|
31962
32095
|
}
|
|
31963
32096
|
|
|
31964
|
-
const VERSION = "5.
|
|
32097
|
+
const VERSION = "5.7.0";
|
|
31965
32098
|
|
|
31966
32099
|
export { VERSION, CesiumViewMonitor, ViewerUtils, ViewerEventTracker, MenuItemManager, isOutlineChanged, EntityRenderEngine, EntityRenderEnginePoint, EntityRenderEnginePolyline, EntityRenderEnginePolygon, EntityRenderEngineModel3d, MenuItemCreator, VisualsRegister, RenderManager, EntitiesIdsRenderManager, DataLabRenderManager, EntitiesLoadedRenderManager, EntitiesRenderManager, EntityRenderManager, TilesetCadRenderManager, TilesetArbRenderManager, TilesetEntitiesRenderManager, TilesetOsmRenderManager, TilesetPointcloudRenderManager, TilesetGooglePhotosRenderManager, DataSourceStaticKmlManager, GoogleSearchRenderManager, AssemblyRenderManager, RelationsRenderManager, SharedGetters, CesiumParabola, EntityLabel, ViewRenderEngine, TileRenderEngine, TilesetRenderEngine, CESIUM_INSPECTOR_KEY, CESIUM_TIMELINE_KEY, CESIUM_TIMELINE_LIVE_KEY, CESIUM_TIMELINE_LIVE_PADDING_KEY, CESIUM_TIMELINE_INTERVAL_KEY, DEFAULT_LIVE_PADDING_SECONDS, ViewUtils, DrawingUtils, MeasureUtils, EntityUtils, CesiumEntityStyler, CesiumAnimatedProperty, CesiumAnimatedInOut, Draw3dPolygon, Draw3dPolyline, MeasureCreator, Walkthrough, Widget, VIEWER_BOOKMARKS_WIDGET_KEY, WidgetBookmarks, WidgetBranding, WidgetCursorBar, WidgetEmbeddedInfoView, WidgetInfoView, WidgetNavCompass$$1 as WidgetNavCompass, VIEWER_VIEW_BAR_WIDGET_KEY, WidgetViewBar, WidgetControlViewBar, WidgetControlViewBarSearch, VIEWER_LEFT_PANEL_WIDGET_KEY, VIEWER_LEFT_PANEL_CSS_VAR_LEFT, WidgetLeftPanel, WidgetLeftPanelTab, WidgetLeftPanelTabBookmarks };
|
|
31967
32100
|
//# sourceMappingURL=bruce-cesium.es5.js.map
|