bruce-cesium 5.4.2 → 5.4.3
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 +13 -13
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +12 -12
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/cesium-animated-property.js +2 -2
- package/dist/lib/rendering/cesium-animated-property.js.map +1 -1
- package/dist/lib/rendering/entity-render-engine-model3d.js +3 -3
- package/dist/lib/rendering/entity-render-engine-model3d.js.map +1 -1
- package/dist/lib/rendering/entity-render-engine-point.js +5 -5
- package/dist/lib/rendering/entity-render-engine-point.js.map +1 -1
- package/dist/lib/rendering/render-managers/tilesets/tileset-cad-render-manager.js +1 -1
- package/dist/lib/rendering/render-managers/tilesets/tileset-cad-render-manager.js.map +1 -1
- package/dist/types/bruce-cesium.d.ts +1 -1
- package/dist/types/rendering/cesium-animated-property.d.ts +1 -1
- package/package.json +1 -1
package/dist/bruce-cesium.es5.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BruceEvent, Cartes, Entity as Entity$1, Carto, Geometry, MathUtils, LRUCache, Api, Calculator, ClientFile, EntityTag, EntityType, ObjectUtils, Style, ProjectViewTile, DelayQueue, EntityLod, Bounds, ZoomControl, EntityRelationType, ENVIRONMENT, EntityHistoricData, Tileset, EntityCoords, DataLab, EntitySource, MenuItem, EntityRelation, ProgramKey, ProjectView, ProjectViewBookmark, ProjectViewLegacyTile, Camera, EntityAttachment, EntityAttachmentType, EntityAttribute, AbstractApi, Session } from 'bruce-models';
|
|
2
2
|
import * as Cesium from 'cesium';
|
|
3
|
-
import { Cartographic, Cartesian2, Math as Math$1, Cartesian3, CallbackProperty, Color, HeightReference, Rectangle, JulianDate, Entity, DistanceDisplayCondition,
|
|
3
|
+
import { Cartographic, Cartesian2, Math as Math$1, Cartesian3, CallbackProperty, Color, HeightReference, Rectangle, JulianDate, Entity, DistanceDisplayCondition, ClassificationType, ArcType, CornerType, ShadowMode, ConstantProperty, ConstantPositionProperty, PolygonHierarchy, PolylineGraphics, ColorMaterialProperty, HorizontalOrigin, VerticalOrigin, ColorBlendMode, HeadingPitchRoll, Transforms, Model, SceneMode, Primitive, Cesium3DTileFeature, GeoJsonDataSource, Cesium3DTileStyle, Cesium3DTileColorBlendMode, HeadingPitchRange, Ion, KmlDataSource, SceneTransforms, EllipsoidTerrainProvider, CesiumInspector, OrthographicFrustum, defined, ClockRange, IonImageryProvider, createWorldImagery, createWorldImageryAsync, BingMapsImageryProvider, BingMapsStyle, MapboxImageryProvider, MapboxStyleImageryProvider, ArcGisMapServerImageryProvider, OpenStreetMapImageryProvider, UrlTemplateImageryProvider, GridImageryProvider, GeographicTilingScheme, ImageryLayer, TileMapServiceImageryProvider, CesiumTerrainProvider, EasingFunction, NearFarScalar, PolygonPipeline, EllipsoidGeodesic, sampleTerrainMostDetailed, Cesium3DTileset, Matrix4, Matrix3, IonResource, ModelGraphics, PolygonGraphics, CorridorGraphics, PointGraphics, BillboardGraphics, EllipseGraphics, PolylineDashMaterialProperty, BoundingSphere, GeometryInstance, Quaternion, ScreenSpaceEventHandler, ScreenSpaceEventType, CzmlDataSource, Intersect, Fullscreen } from 'cesium';
|
|
4
4
|
|
|
5
5
|
const TIME_LAG = 300;
|
|
6
6
|
const POSITION_CHECK_TIMER = 950;
|
|
@@ -1367,7 +1367,7 @@ var CesiumAnimatedProperty;
|
|
|
1367
1367
|
}
|
|
1368
1368
|
}
|
|
1369
1369
|
CesiumAnimatedProperty.AnimatePositionSeries = AnimatePositionSeries;
|
|
1370
|
-
function GetSeriesPossesForHistoricEntity(viewer, heightRef, historic) {
|
|
1370
|
+
function GetSeriesPossesForHistoricEntity(viewer, dataHeightRef, heightRef, historic) {
|
|
1371
1371
|
if (!historic || !historic.length) {
|
|
1372
1372
|
return [];
|
|
1373
1373
|
}
|
|
@@ -1390,7 +1390,7 @@ var CesiumAnimatedProperty;
|
|
|
1390
1390
|
const pos3d = EntityUtils.GetPos({
|
|
1391
1391
|
entity: data,
|
|
1392
1392
|
viewer: viewer,
|
|
1393
|
-
recordHeightRef:
|
|
1393
|
+
recordHeightRef: dataHeightRef,
|
|
1394
1394
|
returnHeightRef: heightRef,
|
|
1395
1395
|
allowRendered: false
|
|
1396
1396
|
});
|
|
@@ -4410,7 +4410,7 @@ var EntityRenderEnginePoint;
|
|
|
4410
4410
|
const bColor = lStyle.lineColor ? Calculator.GetColor(lStyle.lineColor, entity, params.tags) : null;
|
|
4411
4411
|
const cColor = bColor ? ColorToCColor(bColor) : Color.fromCssColorString("rgba(255, 193, 7, 0.8)");
|
|
4412
4412
|
if (cColor.alpha > 0) {
|
|
4413
|
-
const seriesTrackPosses = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, params.entityHistoric);
|
|
4413
|
+
const seriesTrackPosses = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, heightRef, params.entityHistoric);
|
|
4414
4414
|
seriesTrackPosses.reverse();
|
|
4415
4415
|
let posses = seriesTrackPosses.map(x => x.pos3d);
|
|
4416
4416
|
posses = CullDuplicateCPosses(posses);
|
|
@@ -4491,7 +4491,7 @@ var EntityRenderEnginePoint;
|
|
|
4491
4491
|
});
|
|
4492
4492
|
let position = null;
|
|
4493
4493
|
// If we have a series of time-based positions then we'll animate as time changes.
|
|
4494
|
-
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, params.entityHistoric);
|
|
4494
|
+
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, heightRef, params.entityHistoric);
|
|
4495
4495
|
if (series.length > 1) {
|
|
4496
4496
|
animatePosition = new CesiumAnimatedProperty.AnimatePositionSeries({
|
|
4497
4497
|
posses: series,
|
|
@@ -4555,7 +4555,7 @@ var EntityRenderEnginePoint;
|
|
|
4555
4555
|
cEntity.billboard.width = undefined;
|
|
4556
4556
|
cEntity.billboard.height = undefined;
|
|
4557
4557
|
// If we have a series of time-based positions then we'll animate as time changes.
|
|
4558
|
-
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, params.entityHistoric);
|
|
4558
|
+
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, heightRef, params.entityHistoric);
|
|
4559
4559
|
if (series.length > 1) {
|
|
4560
4560
|
animatePosition = new CesiumAnimatedProperty.AnimatePositionSeries({
|
|
4561
4561
|
posses: series,
|
|
@@ -4809,7 +4809,7 @@ var EntityRenderEnginePoint;
|
|
|
4809
4809
|
});
|
|
4810
4810
|
let position = null;
|
|
4811
4811
|
// If we have a series of time-based positions then we'll animate as time changes.
|
|
4812
|
-
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, params.entityHistoric);
|
|
4812
|
+
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, heightRef, params.entityHistoric);
|
|
4813
4813
|
if (series.length > 1) {
|
|
4814
4814
|
animatePosition = new CesiumAnimatedProperty.AnimatePositionSeries({
|
|
4815
4815
|
posses: series,
|
|
@@ -4878,7 +4878,7 @@ var EntityRenderEnginePoint;
|
|
|
4878
4878
|
cEntity.billboard.distanceDisplayCondition = new ConstantProperty(EntityRenderEngine.GetDisplayCondition(params.minDistance, params.maxDistance));
|
|
4879
4879
|
cEntity.billboard.disableDepthTestDistance = new ConstantProperty(disableDepthTest ? Number.POSITIVE_INFINITY : undefined);
|
|
4880
4880
|
// If we have a series of time-based positions then we'll animate as time changes.
|
|
4881
|
-
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, params.entityHistoric);
|
|
4881
|
+
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, heightRef, params.entityHistoric);
|
|
4882
4882
|
if (series.length > 1) {
|
|
4883
4883
|
animatePosition = new CesiumAnimatedProperty.AnimatePositionSeries({
|
|
4884
4884
|
posses: series,
|
|
@@ -6376,7 +6376,7 @@ var EntityRenderEngineModel3d;
|
|
|
6376
6376
|
const bColor = lStyle.lineColor ? Calculator.GetColor(lStyle.lineColor, entity, params.tags) : null;
|
|
6377
6377
|
const cColor = bColor ? ColorToCColor(bColor) : Color.fromCssColorString("rgba(255, 193, 7, 0.8)");
|
|
6378
6378
|
if (cColor.alpha > 0) {
|
|
6379
|
-
const seriesTrackPosses = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, params.entityHistoric);
|
|
6379
|
+
const seriesTrackPosses = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, heightRef, params.entityHistoric);
|
|
6380
6380
|
seriesTrackPosses.reverse();
|
|
6381
6381
|
let posses = seriesTrackPosses.map(x => x.pos3d);
|
|
6382
6382
|
posses = CullDuplicateCPosses(posses);
|
|
@@ -6399,7 +6399,7 @@ var EntityRenderEngineModel3d;
|
|
|
6399
6399
|
});
|
|
6400
6400
|
let position = null;
|
|
6401
6401
|
// If we have a series of time-based positions then we'll animate as time changes.
|
|
6402
|
-
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, params.entityHistoric);
|
|
6402
|
+
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, heightRef, params.entityHistoric);
|
|
6403
6403
|
if (series.length > 1) {
|
|
6404
6404
|
animatePosition = new CesiumAnimatedProperty.AnimatePositionSeries({
|
|
6405
6405
|
posses: series,
|
|
@@ -6475,7 +6475,7 @@ var EntityRenderEngineModel3d;
|
|
|
6475
6475
|
cEntity.model.colorBlendMode = new ConstantProperty(blendMode);
|
|
6476
6476
|
cEntity.model.distanceDisplayCondition = new ConstantProperty(EntityRenderEngine.GetDisplayCondition(params.minDistance, params.maxDistance));
|
|
6477
6477
|
// If we have a series of time-based positions then we'll animate as time changes.
|
|
6478
|
-
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, params.entityHistoric);
|
|
6478
|
+
const series = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(params.viewer, heightRef, heightRef, params.entityHistoric);
|
|
6479
6479
|
if (series.length > 1) {
|
|
6480
6480
|
animatePosition = new CesiumAnimatedProperty.AnimatePositionSeries({
|
|
6481
6481
|
posses: series,
|
|
@@ -17652,7 +17652,7 @@ var TilesetCadRenderManager;
|
|
|
17652
17652
|
entityIds: [this.rootId],
|
|
17653
17653
|
api: api
|
|
17654
17654
|
});
|
|
17655
|
-
const posses = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(this.viewer, HeightReference.NONE, historicData.recordsByIds[this.rootId]);
|
|
17655
|
+
const posses = CesiumAnimatedProperty.GetSeriesPossesForHistoricEntity(this.viewer, HeightReference.NONE, HeightReference.CLAMP_TO_GROUND, historicData.recordsByIds[this.rootId]);
|
|
17656
17656
|
res(posses);
|
|
17657
17657
|
}
|
|
17658
17658
|
catch (e) {
|
|
@@ -30637,7 +30637,7 @@ class WidgetViewBar extends Widget.AWidget {
|
|
|
30637
30637
|
}
|
|
30638
30638
|
}
|
|
30639
30639
|
|
|
30640
|
-
const VERSION = "5.4.
|
|
30640
|
+
const VERSION = "5.4.3";
|
|
30641
30641
|
|
|
30642
30642
|
export { VERSION, CesiumViewMonitor, ViewerUtils, ViewerEventTracker, MenuItemManager, isHistoricMetadataChanged, EntityRenderEngine, EntityRenderEnginePoint, EntityRenderEnginePolyline, EntityRenderEnginePolygon, EntityRenderEngineModel3d, MenuItemCreator, VisualsRegister, RenderManager, EntitiesIdsRenderManager, DataLabRenderManager, EntitiesLoadedRenderManager, EntitiesRenderManager, EntityRenderManager, TilesetCadRenderManager, TilesetArbRenderManager, TilesetEntitiesRenderManager, TilesetOsmRenderManager, TilesetPointcloudRenderManager, TilesetGooglePhotosRenderManager, DataSourceStaticKmlManager, GoogleSearchRenderManager, RelationsRenderManager, SharedGetters, CesiumParabola, EntityLabel, ViewRenderEngine, TileRenderEngine, TilesetRenderEngine, CESIUM_INSPECTOR_KEY, CESIUM_TIMELINE_KEY, CESIUM_TIMELINE_LIVE_KEY, CESIUM_TIMELINE_LIVE_PADDING_FORWARD_KEY, CESIUM_TIMELINE_LIVE_PADDING_BACKWARD_KEY, CESIUM_TIMELINE_INTERVAL_KEY, 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 };
|
|
30643
30643
|
//# sourceMappingURL=bruce-cesium.es5.js.map
|