bruce-cesium 6.5.0 → 6.5.1
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 +11 -9
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +9 -7
- 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 +8 -6
- package/dist/lib/rendering/render-managers/entities/entities-render-manager.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
|
-
import { Cartes, Entity as Entity$1, Calculator, EntityRelationType, EntityType, Style, ENVIRONMENT, ProjectViewTile, DelayQueue, LRUCache, BruceEvent, ObjectUtils, Geometry, EntityHistoricData, EntityLod, ZoomControl, EntityTag, Tileset, Api, EntityCoords, DataLab, EntitySource, ClientFile, MenuItem, EntityRelation, ProgramKey, Bounds, Carto, ProjectView, ProjectViewBookmark,
|
|
1
|
+
import { Cartes, Entity as Entity$1, Calculator, EntityRelationType, EntityType, Style, ENVIRONMENT, ProjectViewTile, DelayQueue, LRUCache, BruceEvent, ObjectUtils, Geometry, EntityHistoricData, EntityLod, ZoomControl, EntityTag, Tileset, Api, EntityCoords, DataLab, EntitySource, ClientFile, MenuItem, EntityRelation, ProgramKey, Bounds, Carto, ProjectView, ProjectViewBookmark, Camera, ProjectViewLegacyTile, AbstractApi, Session, EntityAttachment, EntityAttachmentType, EntityAttribute, MathUtils } from 'bruce-models';
|
|
2
2
|
import * as Cesium from 'cesium';
|
|
3
|
-
import { Cartographic, ColorMaterialProperty, Entity, Color, ConstantProperty, CallbackProperty, Primitive, Cesium3DTileFeature,
|
|
3
|
+
import { Cartographic, ColorMaterialProperty, Entity, Color, ConstantProperty, CallbackProperty, Primitive, Cesium3DTileFeature, DistanceDisplayCondition, HeightReference, ColorBlendMode, HeadingPitchRoll, Math as Math$1, Transforms, ShadowMode, Cartesian3, ClassificationType, Model, HorizontalOrigin, VerticalOrigin, ConstantPositionProperty, PolygonHierarchy, PolylineGraphics, ArcType, CornerType, JulianDate, Quaternion, Matrix4, Cartesian2, SceneTransforms, NearFarScalar, Matrix3, Rectangle, KmlDataSource, GeoJsonDataSource, SceneMode, Cesium3DTileStyle, HeadingPitchRange, Cesium3DTileColorBlendMode, Ion, Cesium3DTileset, IonResource, OrthographicFrustum, EasingFunction, EllipsoidTerrainProvider, IonImageryProvider, createWorldImagery, createWorldImageryAsync, BingMapsImageryProvider, BingMapsStyle, MapboxImageryProvider, MapboxStyleImageryProvider, ArcGisMapServerImageryProvider, OpenStreetMapImageryProvider, UrlTemplateImageryProvider, GridImageryProvider, GeographicTilingScheme, ImageryLayer, TileMapServiceImageryProvider, CesiumTerrainProvider, ModelGraphics, PolygonGraphics, CorridorGraphics, PointGraphics, BillboardGraphics, EllipseGraphics, PolylineDashMaterialProperty, EllipsoidGeodesic, sampleTerrainMostDetailed, defined, PolygonPipeline, BoundingSphere, GeometryInstance, CesiumInspector, ClockRange, ScreenSpaceEventHandler, ScreenSpaceEventType, CzmlDataSource, Intersect, Fullscreen } from 'cesium';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Ensures a number is returned from a given value.
|
|
@@ -8582,7 +8582,7 @@ var EntitiesRenderManager;
|
|
|
8582
8582
|
this.sources = [];
|
|
8583
8583
|
}
|
|
8584
8584
|
async ReRender(params) {
|
|
8585
|
-
var _a, _b, _c, _d;
|
|
8585
|
+
var _a, _b, _c, _d, _e;
|
|
8586
8586
|
let { entityIds, force, entities, maintain } = params;
|
|
8587
8587
|
if (entities && !entityIds) {
|
|
8588
8588
|
entityIds = entities.map(x => { var _a; return (_a = x.Bruce) === null || _a === void 0 ? void 0 : _a.ID; });
|
|
@@ -8635,9 +8635,10 @@ var EntitiesRenderManager;
|
|
|
8635
8635
|
const data = await Entity$1.GetListByIds({
|
|
8636
8636
|
api: this.apiGetter.getApi(),
|
|
8637
8637
|
entityIds: apiIds,
|
|
8638
|
-
|
|
8638
|
+
entityTypeId: (_c = this.item.BruceEntity) === null || _c === void 0 ? void 0 : _c["EntityType.ID"],
|
|
8639
|
+
historicKey: (_d = this.item.BruceEntity) === null || _d === void 0 ? void 0 : _d.historicAttrKey,
|
|
8639
8640
|
historicPoint: this.viewer.clock.currentTime.toString(),
|
|
8640
|
-
schemaId: (
|
|
8641
|
+
schemaId: (_e = this.item.BruceEntity) === null || _e === void 0 ? void 0 : _e.schemaId,
|
|
8641
8642
|
expandSources: true,
|
|
8642
8643
|
scenario: this.scenario,
|
|
8643
8644
|
migrated: true,
|
|
@@ -8731,7 +8732,7 @@ var EntitiesRenderManager;
|
|
|
8731
8732
|
return !maintainedLookup[id] && !this.reRenderState.shouldSkipInRun(id, runId);
|
|
8732
8733
|
});
|
|
8733
8734
|
const checkBatch = async () => {
|
|
8734
|
-
var _a, _b;
|
|
8735
|
+
var _a, _b, _c;
|
|
8735
8736
|
apiIds = this.reRenderState.filterNonSkippedIds(apiIds, runId);
|
|
8736
8737
|
const entityIds = apiIds.splice(0, CHECK_BATCH_SIZE);
|
|
8737
8738
|
if (!entityIds.length) {
|
|
@@ -8741,9 +8742,10 @@ var EntitiesRenderManager;
|
|
|
8741
8742
|
const { entities } = await Entity$1.GetListByIds({
|
|
8742
8743
|
api,
|
|
8743
8744
|
entityIds,
|
|
8744
|
-
|
|
8745
|
+
entityTypeId: (_a = this.item.BruceEntity) === null || _a === void 0 ? void 0 : _a["EntityType.ID"],
|
|
8746
|
+
historicKey: (_b = this.item.BruceEntity) === null || _b === void 0 ? void 0 : _b.historicAttrKey,
|
|
8745
8747
|
historicPoint: this.viewer.clock.currentTime.toString(),
|
|
8746
|
-
schemaId: (
|
|
8748
|
+
schemaId: (_c = this.item.BruceEntity) === null || _c === void 0 ? void 0 : _c.schemaId,
|
|
8747
8749
|
scenario: this.scenario,
|
|
8748
8750
|
expandSources: true,
|
|
8749
8751
|
migrated: true,
|
|
@@ -35295,7 +35297,7 @@ class WidgetViewBar extends Widget.AWidget {
|
|
|
35295
35297
|
}
|
|
35296
35298
|
}
|
|
35297
35299
|
|
|
35298
|
-
const VERSION = "6.5.
|
|
35300
|
+
const VERSION = "6.5.1";
|
|
35299
35301
|
/**
|
|
35300
35302
|
* Updates the environment instance used by bruce-cesium to one specified.
|
|
35301
35303
|
* This can be used to ensure that the instance a parent is referencing is shared between bruce-cesium, bruce-models, and the parent app.
|