bruce-cesium 1.6.8 → 1.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 +5 -4
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +4 -3
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/rendering/render-managers/tilesets/tileset-cad-render-manager.js +4 -3
- package/dist/lib/rendering/render-managers/tilesets/tileset-cad-render-manager.js.map +1 -1
- package/package.json +2 -2
package/dist/bruce-cesium.es5.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BruceEvent, Cartes, Carto, Entity as Entity$1, Geometry, Tileset, MathUtils, LRUCache, ZoomControl, Style, EntityTag, Calculator, EntityLod, EntityType, ClientFile, ObjectUtils, DelayQueue, BatchedDataGetter, EntityRelationType, EntityCoords, EntityFilterGetter, EntitySource, MenuItem, EntityRelation, ProjectView, ProjectViewBookmark, ProjectViewTile, ProjectViewLegacyTile, ProgramKey, Camera } from 'bruce-models';
|
|
2
2
|
import * as Cesium from 'cesium';
|
|
3
|
-
import { Cartesian2, Cartographic, Math as Math$1, Color, HeightReference, Cartesian3, EllipsoidTerrainProvider, Entity, HorizontalOrigin, VerticalOrigin, ClassificationType, ArcType, PolygonHierarchy, ShadowMode, PolylineGraphics, HeadingPitchRoll, Transforms, ColorBlendMode,
|
|
3
|
+
import { Cartesian2, Cartographic, Math as Math$1, Color, HeightReference, Cartesian3, EllipsoidTerrainProvider, Entity, HorizontalOrigin, VerticalOrigin, ClassificationType, ArcType, PolygonHierarchy, ShadowMode, PolylineGraphics, HeadingPitchRoll, Transforms, ColorBlendMode, Primitive, Cesium3DTileFeature, SceneMode, Cesium3DTileColorBlendMode, HeadingPitchRange, createOsmBuildings, Cesium3DTileStyle, Rectangle, KmlDataSource, OrthographicFrustum, JulianDate, CallbackProperty, PolygonPipeline, createWorldTerrain, CesiumTerrainProvider, BingMapsImageryProvider, BingMapsStyle, MapboxImageryProvider, MapboxStyleImageryProvider, ArcGisMapServerImageryProvider, OpenStreetMapImageryProvider, GridImageryProvider, GeographicTilingScheme, ImageryLayer, UrlTemplateImageryProvider, TileMapServiceImageryProvider, IonImageryProvider, EllipsoidGeodesic, sampleTerrainMostDetailed, Cesium3DTileset, Matrix4, IonResource, ColorMaterialProperty, Matrix3, EasingFunction, GeometryInstance } from 'cesium';
|
|
4
4
|
|
|
5
5
|
var TIME_LAG = 300;
|
|
6
6
|
var POSITION_CHECK_TIMER = 950;
|
|
@@ -5478,7 +5478,7 @@ var TilesetCadRenderManager;
|
|
|
5478
5478
|
}
|
|
5479
5479
|
};
|
|
5480
5480
|
Manager.prototype.mapTilesetFeature = function (feature) {
|
|
5481
|
-
var _a, _b, _c, _d, _e, _f;
|
|
5481
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
5482
5482
|
var version = (_c = (_b = (_a = feature === null || feature === void 0 ? void 0 : feature.tileset) === null || _a === void 0 ? void 0 : _a.extensions) === null || _b === void 0 ? void 0 : _b.modelTree) === null || _c === void 0 ? void 0 : _c.version;
|
|
5483
5483
|
if (!version) {
|
|
5484
5484
|
version = 1;
|
|
@@ -5489,7 +5489,8 @@ var TilesetCadRenderManager;
|
|
|
5489
5489
|
menuItemId: this.item.id,
|
|
5490
5490
|
priority: 0,
|
|
5491
5491
|
visual: feature,
|
|
5492
|
-
accountId: (_e = (_d = this.item.tileset) === null || _d === void 0 ? void 0 : _d.ClientAccountID) !== null && _e !== void 0 ? _e : this.apiGetter.accountId
|
|
5492
|
+
accountId: (_e = (_d = this.item.tileset) === null || _d === void 0 ? void 0 : _d.ClientAccountID) !== null && _e !== void 0 ? _e : this.apiGetter.accountId,
|
|
5493
|
+
tilesetId: (_f = this.item.tileset) === null || _f === void 0 ? void 0 : _f.TilesetID
|
|
5493
5494
|
};
|
|
5494
5495
|
if (version == 1) {
|
|
5495
5496
|
var pathStr = feature.getProperty("BrucePath");
|
|
@@ -5518,7 +5519,7 @@ var TilesetCadRenderManager;
|
|
|
5518
5519
|
}
|
|
5519
5520
|
// Optional menu item restriction.
|
|
5520
5521
|
// Allows only showing certain entities from a tileset.
|
|
5521
|
-
var onlyIds = (
|
|
5522
|
+
var onlyIds = (_g = this.item.BruceEntity) === null || _g === void 0 ? void 0 : _g.EntityIds;
|
|
5522
5523
|
if ((onlyIds === null || onlyIds === void 0 ? void 0 : onlyIds.length) && !onlyIds.includes(rego.entityId)) {
|
|
5523
5524
|
if (this.item.BruceEntity.Ghosts) {
|
|
5524
5525
|
feature.color = Color.WHITE.clone().withAlpha(0.5);
|