bruce-cesium 4.9.8 → 5.0.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 +17 -5
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +16 -4
- 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 +11 -2
- package/dist/lib/rendering/cesium-animated-property.js.map +1 -1
- package/dist/lib/rendering/visuals-register.js +4 -1
- package/dist/lib/rendering/visuals-register.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, 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, Camera, ProjectViewLegacyTile, 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, HorizontalOrigin, VerticalOrigin, ColorBlendMode, HeadingPitchRoll, Transforms, Model, PolygonHierarchy, PolylineGraphics, ColorMaterialProperty, SceneMode, GeoJsonDataSource, Primitive, Cesium3DTileFeature, Cesium3DTileColorBlendMode, HeadingPitchRange, Cesium3DTileStyle, Ion, KmlDataSource, SceneTransforms, OrthographicFrustum, EasingFunction, NearFarScalar, EllipsoidTerrainProvider, BingMapsImageryProvider, BingMapsStyle, MapboxImageryProvider, MapboxStyleImageryProvider, ArcGisMapServerImageryProvider, OpenStreetMapImageryProvider, UrlTemplateImageryProvider, GridImageryProvider, GeographicTilingScheme, ImageryLayer, TileMapServiceImageryProvider, IonImageryProvider, CesiumTerrainProvider, Cesium3DTileset, Matrix4, Matrix3, IonResource, CesiumInspector, defined, ClockRange, EllipsoidGeodesic, sampleTerrainMostDetailed, PolygonPipeline, BoundingSphere, GeometryInstance, ModelGraphics, PolygonGraphics, CorridorGraphics, PointGraphics, BillboardGraphics, EllipseGraphics, PolylineDashMaterialProperty, ScreenSpaceEventHandler, ScreenSpaceEventType, Quaternion, CzmlDataSource, Intersect, Fullscreen } from 'cesium';
|
|
4
4
|
|
|
5
5
|
const TIME_LAG = 300;
|
|
6
6
|
const POSITION_CHECK_TIMER = 950;
|
|
@@ -1363,12 +1363,21 @@ var CesiumAnimatedProperty;
|
|
|
1363
1363
|
const series = [];
|
|
1364
1364
|
for (let i = 0; i < historic.length; i++) {
|
|
1365
1365
|
const item = historic[i];
|
|
1366
|
+
const data = {
|
|
1367
|
+
...item.data,
|
|
1368
|
+
Bruce: {
|
|
1369
|
+
Location: item.location,
|
|
1370
|
+
Transform: item.transform,
|
|
1371
|
+
VectorGeometry: item.geometry,
|
|
1372
|
+
Boundaries: item.boundaries
|
|
1373
|
+
}
|
|
1374
|
+
};
|
|
1366
1375
|
const dateTime = new Date(item.dateTime);
|
|
1367
1376
|
if (!dateTime) {
|
|
1368
1377
|
continue;
|
|
1369
1378
|
}
|
|
1370
1379
|
const pos3d = EntityUtils.GetPos({
|
|
1371
|
-
entity:
|
|
1380
|
+
entity: data,
|
|
1372
1381
|
viewer: viewer,
|
|
1373
1382
|
recordHeightRef: heightRef,
|
|
1374
1383
|
returnHeightRef: heightRef,
|
|
@@ -1381,7 +1390,7 @@ var CesiumAnimatedProperty;
|
|
|
1381
1390
|
dateTime,
|
|
1382
1391
|
pos3d: pos3d,
|
|
1383
1392
|
heading: Entity$1.GetValue({
|
|
1384
|
-
entity:
|
|
1393
|
+
entity: data,
|
|
1385
1394
|
path: ["Bruce", "Transform", "Heading"]
|
|
1386
1395
|
})
|
|
1387
1396
|
});
|
|
@@ -10032,7 +10041,10 @@ var VisualsRegister;
|
|
|
10032
10041
|
if (key !== NO_MENU_ITEM_KEY) {
|
|
10033
10042
|
const otherState = eStates[key];
|
|
10034
10043
|
for (const stateKey of keys) {
|
|
10035
|
-
|
|
10044
|
+
if (otherState.hasOwnProperty(stateKey)) {
|
|
10045
|
+
changed = true;
|
|
10046
|
+
delete otherState[stateKey];
|
|
10047
|
+
}
|
|
10036
10048
|
}
|
|
10037
10049
|
if (isBlankState(otherState)) {
|
|
10038
10050
|
delete eStates[key];
|
|
@@ -28358,7 +28370,7 @@ class WidgetViewBar extends Widget.AWidget {
|
|
|
28358
28370
|
}
|
|
28359
28371
|
}
|
|
28360
28372
|
|
|
28361
|
-
const VERSION = "
|
|
28373
|
+
const VERSION = "5.0.0";
|
|
28362
28374
|
|
|
28363
28375
|
export { VERSION, CesiumViewMonitor, ViewerUtils, ViewerEventTracker, MenuItemManager, 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, ViewUtils, DrawingUtils, MeasureUtils, EntityUtils, CesiumEntityStyler, CesiumAnimatedProperty, CesiumAnimatedInOut, Draw3dPolygon, Draw3dPolyline, MeasureCreator, 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 };
|
|
28364
28376
|
//# sourceMappingURL=bruce-cesium.es5.js.map
|