bruce-cesium 6.1.6 → 6.1.7
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 +28 -18
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +27 -17
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/tileset-render-engine.js +26 -16
- package/dist/lib/rendering/tileset-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, Cartesian2, Math as Math$1, Cartesian3, CallbackProperty, Color, HeightReference, Rectangle, JulianDate, Entity,
|
|
3
|
+
import { Cartographic, Cartesian2, Math as Math$1, Cartesian3, CallbackProperty, Color, HeightReference, Rectangle, JulianDate, Entity, HorizontalOrigin, VerticalOrigin, ConstantProperty, ClassificationType, ConstantPositionProperty, DistanceDisplayCondition, ArcType, CornerType, ShadowMode, PolygonHierarchy, PolylineGraphics, ColorMaterialProperty, ColorBlendMode, HeadingPitchRoll, Transforms, Model, SceneMode, Primitive, Cesium3DTileFeature, GeoJsonDataSource, Cesium3DTileStyle, HeadingPitchRange, Cesium3DTileColorBlendMode, Ion, KmlDataSource, Quaternion, Matrix3, Matrix4, SceneTransforms, NearFarScalar, OrthographicFrustum, EasingFunction, EllipsoidTerrainProvider, IonImageryProvider, createWorldImagery, createWorldImageryAsync, BingMapsImageryProvider, BingMapsStyle, MapboxImageryProvider, MapboxStyleImageryProvider, ArcGisMapServerImageryProvider, OpenStreetMapImageryProvider, UrlTemplateImageryProvider, GridImageryProvider, GeographicTilingScheme, ImageryLayer, TileMapServiceImageryProvider, CesiumTerrainProvider, IonResource, Cesium3DTileset, CesiumInspector, defined, ClockRange, EllipsoidGeodesic, sampleTerrainMostDetailed, PolygonPipeline, ModelGraphics, PolygonGraphics, CorridorGraphics, PointGraphics, BillboardGraphics, EllipseGraphics, PolylineDashMaterialProperty, ScreenSpaceEventHandler, ScreenSpaceEventType, BoundingSphere, GeometryInstance, CzmlDataSource, Intersect, Fullscreen } from 'cesium';
|
|
4
4
|
|
|
5
5
|
const TIME_LAG = 300;
|
|
6
6
|
const POSITION_CHECK_TIMER = 950;
|
|
@@ -16889,11 +16889,12 @@ var TilesetRenderEngine;
|
|
|
16889
16889
|
}
|
|
16890
16890
|
TilesetRenderEngine.OnTilesetReady = OnTilesetReady;
|
|
16891
16891
|
function ApplyPosition(params) {
|
|
16892
|
-
var _a;
|
|
16892
|
+
var _a, _b;
|
|
16893
16893
|
const cTileset = params.cTileset;
|
|
16894
16894
|
const root = cTileset.root;
|
|
16895
16895
|
const position = params.position;
|
|
16896
|
-
|
|
16896
|
+
const ucsTransform = ((_a = position.ucs) === null || _a === void 0 ? void 0 : _a.transform) || {};
|
|
16897
|
+
let location = ((_b = position.ucs) === null || _b === void 0 ? void 0 : _b.location) ? position.ucs.location : position.location;
|
|
16897
16898
|
let transform = position.transform;
|
|
16898
16899
|
transform = {
|
|
16899
16900
|
heading: 0,
|
|
@@ -16906,24 +16907,33 @@ var TilesetRenderEngine;
|
|
|
16906
16907
|
...transform
|
|
16907
16908
|
};
|
|
16908
16909
|
transform.scale = EnsureNumber(transform.scale);
|
|
16909
|
-
|
|
16910
|
-
|
|
16911
|
-
|
|
16912
|
-
// If we're in model-space we'll just go at 0,0 lat/lon and no h/p/r from the coords.
|
|
16910
|
+
// In model-space we focus on the UCS.
|
|
16911
|
+
// There's no location as we center the view around it.
|
|
16912
|
+
// TODO: although we should render the model relative to the UCS.
|
|
16913
16913
|
if (params.modelSpace) {
|
|
16914
16914
|
location = null;
|
|
16915
16915
|
transform = {
|
|
16916
|
-
heading: 0,
|
|
16917
|
-
pitch: 0,
|
|
16918
|
-
roll: 0,
|
|
16919
|
-
scale: EnsureNumber(
|
|
16920
|
-
x: 0,
|
|
16921
|
-
y: 0,
|
|
16922
|
-
z: 0
|
|
16916
|
+
heading: EnsureNumber(ucsTransform.heading, 0),
|
|
16917
|
+
pitch: EnsureNumber(ucsTransform.pitch, 0),
|
|
16918
|
+
roll: EnsureNumber(ucsTransform.roll, 0),
|
|
16919
|
+
scale: EnsureNumber(ucsTransform.scale, 1),
|
|
16920
|
+
x: EnsureNumber(ucsTransform.x, 0),
|
|
16921
|
+
y: EnsureNumber(ucsTransform.y, 0),
|
|
16922
|
+
z: EnsureNumber(ucsTransform.z, 0)
|
|
16923
16923
|
};
|
|
16924
|
-
|
|
16925
|
-
|
|
16926
|
-
|
|
16924
|
+
}
|
|
16925
|
+
// If not in model-space then scale/add UCS transform to the entity transform.
|
|
16926
|
+
else {
|
|
16927
|
+
transform.scale *= EnsureNumber(ucsTransform.scale, 1);
|
|
16928
|
+
transform.heading += EnsureNumber(ucsTransform.heading, 0);
|
|
16929
|
+
transform.pitch += EnsureNumber(ucsTransform.pitch, 0);
|
|
16930
|
+
transform.roll += EnsureNumber(ucsTransform.roll, 0);
|
|
16931
|
+
transform.x += EnsureNumber(ucsTransform.x, 0);
|
|
16932
|
+
transform.y += EnsureNumber(ucsTransform.y, 0);
|
|
16933
|
+
transform.z += EnsureNumber(ucsTransform.z, 0);
|
|
16934
|
+
}
|
|
16935
|
+
if (transform.scale <= 0) {
|
|
16936
|
+
transform.scale = 0.000001;
|
|
16927
16937
|
}
|
|
16928
16938
|
/**
|
|
16929
16939
|
* Very cursed.
|
|
@@ -33757,7 +33767,7 @@ class WidgetViewBar extends Widget.AWidget {
|
|
|
33757
33767
|
}
|
|
33758
33768
|
}
|
|
33759
33769
|
|
|
33760
|
-
const VERSION = "6.1.
|
|
33770
|
+
const VERSION = "6.1.7";
|
|
33761
33771
|
|
|
33762
33772
|
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, LiveCursor, ViewRenderEngine, TileRenderEngine, TilesetRenderEngine, CESIUM_INSPECTOR_KEY, CESIUM_TIMELINE_KEY, CESIUM_TIMELINE_LIVE_KEY, CESIUM_TIMELINE_LIVE_PADDING_KEY, CESIUM_TIMELINE_INTERVAL_KEY, CESIUM_MODEL_SPACE_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 };
|
|
33763
33773
|
//# sourceMappingURL=bruce-cesium.es5.js.map
|