@jorgmoritz/gis-manager 0.1.29 → 0.1.31

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/index.d.cts CHANGED
@@ -780,6 +780,156 @@ declare function renderFlightPathPreview(CesiumNS: typeof Cesium, viewer: Cesium
780
780
  controller: FlightPathPreviewController;
781
781
  };
782
782
 
783
+ /**
784
+ * 飞行预览控制器
785
+ *
786
+ * 功能:
787
+ * - 飞机沿航线飞行动画(循环播放)
788
+ * - 第一人称镜头预览窗口
789
+ * - 轨迹高亮(已飞过/未飞过航段)
790
+ * - 预览模式下禁用交互
791
+ */
792
+
793
+ /** 播放状态 */
794
+ type FlightPreviewState = 'playing' | 'paused' | 'stopped';
795
+ /** 轨迹高亮配置 */
796
+ interface TrackHighlightOptions {
797
+ /** 是否启用,默认 true */
798
+ enabled?: boolean;
799
+ /** 已飞过航段颜色 */
800
+ traveledColor?: Cesium.Color;
801
+ /** 未飞过航段颜色 */
802
+ remainingColor?: Cesium.Color;
803
+ /** 已飞过航段宽度 */
804
+ traveledWidth?: number;
805
+ /** 未飞过航段宽度 */
806
+ remainingWidth?: number;
807
+ }
808
+ /** 飞行预览选项 */
809
+ interface FlightPreviewOptions {
810
+ /** 航线数据 */
811
+ waylineData: SinoflyWaylineData;
812
+ /** 飞行速度 (m/s),默认 10 */
813
+ speed?: number;
814
+ /** 是否循环播放,默认 true */
815
+ loop?: boolean;
816
+ /** 预览窗口容器 */
817
+ previewContainer?: HTMLElement;
818
+ /** 是否显示视锥体,默认 true */
819
+ showFrustum?: boolean;
820
+ /** 轨迹高亮配置 */
821
+ trackHighlight?: TrackHighlightOptions;
822
+ /** 数据源图层 */
823
+ layer?: Cesium.CustomDataSource;
824
+ }
825
+ /** 进度变化事件 */
826
+ interface ProgressChangeEvent {
827
+ /** 当前进度 (0-1) */
828
+ progress: number;
829
+ /** 当前位置 */
830
+ position: Cesium.Cartesian3;
831
+ /** 当前航点索引 */
832
+ waypointIndex: number;
833
+ /** 当前姿态 */
834
+ pose: {
835
+ heading: number;
836
+ pitch: number;
837
+ roll: number;
838
+ };
839
+ }
840
+ /** 状态变化事件 */
841
+ interface StateChangeEvent {
842
+ state: FlightPreviewState;
843
+ }
844
+ /**
845
+ * 飞行预览控制器
846
+ */
847
+ declare class FlightPreviewController {
848
+ private CesiumNS;
849
+ private viewer;
850
+ private options;
851
+ private state;
852
+ private destroyed;
853
+ private speed;
854
+ private loop;
855
+ private showFrustum;
856
+ private trackHighlightOptions;
857
+ private waypoints;
858
+ private totalDistance;
859
+ private currentDistance;
860
+ private animationFrameId?;
861
+ private lastFrameTime?;
862
+ private layer?;
863
+ private droneEntity?;
864
+ private frustum?;
865
+ private pathPreview?;
866
+ private traveledPathEntity?;
867
+ private remainingPathEntity?;
868
+ onStateChange: Emitter<StateChangeEvent>;
869
+ onProgressChange: Emitter<ProgressChangeEvent>;
870
+ constructor(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, options: FlightPreviewOptions);
871
+ /** 开始预览 */
872
+ start(): void;
873
+ /** 暂停 */
874
+ pause(): void;
875
+ /** 继续 */
876
+ resume(): void;
877
+ /** 停止并重置 */
878
+ stop(): void;
879
+ /** 跳转到指定进度 (0-1) */
880
+ seek(progress: number): void;
881
+ /** 设置速度 */
882
+ setSpeed(speed: number): void;
883
+ /** 获取当前状态 */
884
+ getState(): FlightPreviewState;
885
+ /** 获取当前进度 (0-1) */
886
+ getProgress(): number;
887
+ /** 获取当前航点索引 */
888
+ getCurrentWaypointIndex(): number;
889
+ /** 销毁 */
890
+ destroy(): void;
891
+ /** 初始化图层 */
892
+ private initLayer;
893
+ /** 解析航线数据 */
894
+ private parseWaylineData;
895
+ /** 初始化可视化组件 */
896
+ private initVisualization;
897
+ /** 初始化无人机模型 */
898
+ private initDroneModel;
899
+ /** 应用模型偏移 */
900
+ private applyModelOffset;
901
+ /** 初始化视锥体 */
902
+ private initFrustum;
903
+ /** 初始化轨迹高亮 */
904
+ private initTrackHighlight;
905
+ /** 初始化预览窗口 */
906
+ private initPathPreview;
907
+ /** 启动动画循环 */
908
+ private startAnimationLoop;
909
+ /** 停止动画循环 */
910
+ private stopAnimationLoop;
911
+ /** 查找当前所在航段 */
912
+ private findCurrentSegment;
913
+ /** 获取当前姿态 */
914
+ private getCurrentPose;
915
+ /** 位置插值 */
916
+ private interpolatePosition;
917
+ /** 角度插值(处理 0-360 环绕) */
918
+ private interpolateAngle;
919
+ /** 线性插值 */
920
+ private lerp;
921
+ /** 获取已飞过的位置数组 */
922
+ private getTraveledPositions;
923
+ /** 获取未飞过的位置数组 */
924
+ private getRemainingPositions;
925
+ /** 更新可视化 */
926
+ private updateVisualization;
927
+ /** 设置状态 */
928
+ private setState;
929
+ /** 销毁可视化组件 */
930
+ private destroyVisualization;
931
+ }
932
+
783
933
  type PathSample = {
784
934
  time: Cesium.JulianDate | Date | string | number;
785
935
  lon: number;
@@ -1638,20 +1788,26 @@ interface PreviousViewChange {
1638
1788
  current?: CameraView;
1639
1789
  previous?: CameraView;
1640
1790
  }
1791
+ interface FlightPreviewChange {
1792
+ previewing: boolean;
1793
+ }
1641
1794
  /**
1642
1795
  * Lightweight state manager for common UI states:
1643
1796
  * - selection (arbitrary payload)
1644
1797
  * - editing (boolean + optional target)
1645
1798
  * - previous camera view (for simple back navigation)
1799
+ * - flight preview mode (locks interaction)
1646
1800
  */
1647
1801
  declare class StateManager<TSelection = unknown, TEditingTarget = unknown> {
1648
1802
  private selected?;
1649
1803
  private editing;
1650
1804
  private editingTarget?;
1651
1805
  private previousView?;
1806
+ private flightPreviewing;
1652
1807
  readonly onSelectionChange: Emitter<SelectionChange<TSelection>>;
1653
1808
  readonly onEditingChange: Emitter<EditingChange<TEditingTarget>>;
1654
1809
  readonly onPreviousViewChange: Emitter<PreviousViewChange>;
1810
+ readonly onFlightPreviewChange: Emitter<FlightPreviewChange>;
1655
1811
  setSelected(next?: TSelection): void;
1656
1812
  /**
1657
1813
  * 获取当前选中对象。
@@ -1668,6 +1824,22 @@ declare class StateManager<TSelection = unknown, TEditingTarget = unknown> {
1668
1824
  getEditingTarget(): TEditingTarget | undefined;
1669
1825
  setPreviousCameraView(view?: CameraView): void;
1670
1826
  getPreviousCameraView(): CameraView | undefined;
1827
+ /**
1828
+ * 开始飞行预览模式(锁定交互)
1829
+ */
1830
+ startFlightPreview(): void;
1831
+ /**
1832
+ * 停止飞行预览模式(恢复交互)
1833
+ */
1834
+ stopFlightPreview(): void;
1835
+ /**
1836
+ * 检查是否处于飞行预览模式
1837
+ */
1838
+ isFlightPreviewing(): boolean;
1839
+ /**
1840
+ * 检查当前是否允许交互(非编辑模式且非飞行预览模式)
1841
+ */
1842
+ isInteractionAllowed(): boolean;
1671
1843
  }
1672
1844
  declare const globalState: StateManager<any, any>;
1673
1845
 
@@ -2050,4 +2222,4 @@ declare const placeholder: {
2050
2222
  ready: boolean;
2051
2223
  };
2052
2224
 
2053
- export { CZMLManager, type CameraDestinationInput, CameraEventBus, type CameraFOVChangeEvent, CameraFOVController, type CameraFlyOptions, type CameraInitOptions, CameraManager, type CameraOrientation, type CameraPoseChangeEvent, type CameraSetViewOptions, type CameraView, type CesiumAssetsOptions, type ConvertedWaylineData, type ConvertedWaypointData, type CursorPoseChangeEvent, type CzmlExportOptions, type CzmlImportOptions, type EditingChange, Emitter, type FOVChangeEvent, type FOVControllerOptions, type FlightPathPreviewController, type FlyToOptions, FrustumPyramid, type FrustumPyramidOptions, type FrustumShapeChangeEvent, type ImageryOptions, type ImageryProviderKind, type InitOptions, type LayerEvents, type LayerHandle, LayerManager, type LayerType, type Listener, type LonLatHeight, type Orientation, type PathEditingSaveResult, type PathOptions, type PathToSinoflyOptions, type PhotoBillboardItem, type PhotoBillboardLayerOptions, type PhotoBillboardResult, type PolygonDrawingOptions, type PolygonEditingSession, PolygonEditor, type PreviousViewChange, type QuickEditOptions, type RenderFlightPathOptions, type RenderFlightPathPreviewOptions, SceneManager, type SceneOptions, type SelectionChange, type SelectionResult, type SelectionSession, Selector, type ShapeLineProps, type ShapePointProps, type ShapePolygonProps, type SinoflyAdapterOptions, type SinoflyWaylineData, type SinoflyWaypointInfo, StateManager, type TerrainKind, type TerrainOptions, type Toggle2D3DContext, type Toggle2D3DOptions, type VersionInfo, assertCesiumAssetsConfigured, configureCesiumAssets, configureCesiumIonToken, convertPathToSinofly, convertSinoflyWayline, convertSinoflyWaylines, ensureCesiumIonToken, getCesiumBaseUrl, getCesiumIonToken, globalCameraEventBus, globalState, placeholder, renderFlightPath, renderFlightPathPreview, toggle2D3D, version, versionInfo };
2225
+ export { CZMLManager, type CameraDestinationInput, CameraEventBus, type CameraFOVChangeEvent, CameraFOVController, type CameraFlyOptions, type CameraInitOptions, CameraManager, type CameraOrientation, type CameraPoseChangeEvent, type CameraSetViewOptions, type CameraView, type CesiumAssetsOptions, type ConvertedWaylineData, type ConvertedWaypointData, type CursorPoseChangeEvent, type CzmlExportOptions, type CzmlImportOptions, type EditingChange, Emitter, type FOVChangeEvent, type FOVControllerOptions, type FlightPathPreviewController, type FlightPreviewChange, FlightPreviewController, type FlightPreviewOptions, type FlightPreviewState, type FlyToOptions, FrustumPyramid, type FrustumPyramidOptions, type FrustumShapeChangeEvent, type ImageryOptions, type ImageryProviderKind, type InitOptions, type LayerEvents, type LayerHandle, LayerManager, type LayerType, type Listener, type LonLatHeight, type Orientation, type PathEditingSaveResult, type PathOptions, type PathToSinoflyOptions, type PhotoBillboardItem, type PhotoBillboardLayerOptions, type PhotoBillboardResult, type PolygonDrawingOptions, type PolygonEditingSession, PolygonEditor, type PreviousViewChange, type ProgressChangeEvent, type QuickEditOptions, type RenderFlightPathOptions, type RenderFlightPathPreviewOptions, SceneManager, type SceneOptions, type SelectionChange, type SelectionResult, type SelectionSession, Selector, type ShapeLineProps, type ShapePointProps, type ShapePolygonProps, type SinoflyAdapterOptions, type SinoflyWaylineData, type SinoflyWaypointInfo, type StateChangeEvent, StateManager, type TerrainKind, type TerrainOptions, type Toggle2D3DContext, type Toggle2D3DOptions, type TrackHighlightOptions, type VersionInfo, assertCesiumAssetsConfigured, configureCesiumAssets, configureCesiumIonToken, convertPathToSinofly, convertSinoflyWayline, convertSinoflyWaylines, ensureCesiumIonToken, getCesiumBaseUrl, getCesiumIonToken, globalCameraEventBus, globalState, placeholder, renderFlightPath, renderFlightPathPreview, toggle2D3D, version, versionInfo };
package/dist/index.d.ts CHANGED
@@ -780,6 +780,156 @@ declare function renderFlightPathPreview(CesiumNS: typeof Cesium, viewer: Cesium
780
780
  controller: FlightPathPreviewController;
781
781
  };
782
782
 
783
+ /**
784
+ * 飞行预览控制器
785
+ *
786
+ * 功能:
787
+ * - 飞机沿航线飞行动画(循环播放)
788
+ * - 第一人称镜头预览窗口
789
+ * - 轨迹高亮(已飞过/未飞过航段)
790
+ * - 预览模式下禁用交互
791
+ */
792
+
793
+ /** 播放状态 */
794
+ type FlightPreviewState = 'playing' | 'paused' | 'stopped';
795
+ /** 轨迹高亮配置 */
796
+ interface TrackHighlightOptions {
797
+ /** 是否启用,默认 true */
798
+ enabled?: boolean;
799
+ /** 已飞过航段颜色 */
800
+ traveledColor?: Cesium.Color;
801
+ /** 未飞过航段颜色 */
802
+ remainingColor?: Cesium.Color;
803
+ /** 已飞过航段宽度 */
804
+ traveledWidth?: number;
805
+ /** 未飞过航段宽度 */
806
+ remainingWidth?: number;
807
+ }
808
+ /** 飞行预览选项 */
809
+ interface FlightPreviewOptions {
810
+ /** 航线数据 */
811
+ waylineData: SinoflyWaylineData;
812
+ /** 飞行速度 (m/s),默认 10 */
813
+ speed?: number;
814
+ /** 是否循环播放,默认 true */
815
+ loop?: boolean;
816
+ /** 预览窗口容器 */
817
+ previewContainer?: HTMLElement;
818
+ /** 是否显示视锥体,默认 true */
819
+ showFrustum?: boolean;
820
+ /** 轨迹高亮配置 */
821
+ trackHighlight?: TrackHighlightOptions;
822
+ /** 数据源图层 */
823
+ layer?: Cesium.CustomDataSource;
824
+ }
825
+ /** 进度变化事件 */
826
+ interface ProgressChangeEvent {
827
+ /** 当前进度 (0-1) */
828
+ progress: number;
829
+ /** 当前位置 */
830
+ position: Cesium.Cartesian3;
831
+ /** 当前航点索引 */
832
+ waypointIndex: number;
833
+ /** 当前姿态 */
834
+ pose: {
835
+ heading: number;
836
+ pitch: number;
837
+ roll: number;
838
+ };
839
+ }
840
+ /** 状态变化事件 */
841
+ interface StateChangeEvent {
842
+ state: FlightPreviewState;
843
+ }
844
+ /**
845
+ * 飞行预览控制器
846
+ */
847
+ declare class FlightPreviewController {
848
+ private CesiumNS;
849
+ private viewer;
850
+ private options;
851
+ private state;
852
+ private destroyed;
853
+ private speed;
854
+ private loop;
855
+ private showFrustum;
856
+ private trackHighlightOptions;
857
+ private waypoints;
858
+ private totalDistance;
859
+ private currentDistance;
860
+ private animationFrameId?;
861
+ private lastFrameTime?;
862
+ private layer?;
863
+ private droneEntity?;
864
+ private frustum?;
865
+ private pathPreview?;
866
+ private traveledPathEntity?;
867
+ private remainingPathEntity?;
868
+ onStateChange: Emitter<StateChangeEvent>;
869
+ onProgressChange: Emitter<ProgressChangeEvent>;
870
+ constructor(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, options: FlightPreviewOptions);
871
+ /** 开始预览 */
872
+ start(): void;
873
+ /** 暂停 */
874
+ pause(): void;
875
+ /** 继续 */
876
+ resume(): void;
877
+ /** 停止并重置 */
878
+ stop(): void;
879
+ /** 跳转到指定进度 (0-1) */
880
+ seek(progress: number): void;
881
+ /** 设置速度 */
882
+ setSpeed(speed: number): void;
883
+ /** 获取当前状态 */
884
+ getState(): FlightPreviewState;
885
+ /** 获取当前进度 (0-1) */
886
+ getProgress(): number;
887
+ /** 获取当前航点索引 */
888
+ getCurrentWaypointIndex(): number;
889
+ /** 销毁 */
890
+ destroy(): void;
891
+ /** 初始化图层 */
892
+ private initLayer;
893
+ /** 解析航线数据 */
894
+ private parseWaylineData;
895
+ /** 初始化可视化组件 */
896
+ private initVisualization;
897
+ /** 初始化无人机模型 */
898
+ private initDroneModel;
899
+ /** 应用模型偏移 */
900
+ private applyModelOffset;
901
+ /** 初始化视锥体 */
902
+ private initFrustum;
903
+ /** 初始化轨迹高亮 */
904
+ private initTrackHighlight;
905
+ /** 初始化预览窗口 */
906
+ private initPathPreview;
907
+ /** 启动动画循环 */
908
+ private startAnimationLoop;
909
+ /** 停止动画循环 */
910
+ private stopAnimationLoop;
911
+ /** 查找当前所在航段 */
912
+ private findCurrentSegment;
913
+ /** 获取当前姿态 */
914
+ private getCurrentPose;
915
+ /** 位置插值 */
916
+ private interpolatePosition;
917
+ /** 角度插值(处理 0-360 环绕) */
918
+ private interpolateAngle;
919
+ /** 线性插值 */
920
+ private lerp;
921
+ /** 获取已飞过的位置数组 */
922
+ private getTraveledPositions;
923
+ /** 获取未飞过的位置数组 */
924
+ private getRemainingPositions;
925
+ /** 更新可视化 */
926
+ private updateVisualization;
927
+ /** 设置状态 */
928
+ private setState;
929
+ /** 销毁可视化组件 */
930
+ private destroyVisualization;
931
+ }
932
+
783
933
  type PathSample = {
784
934
  time: Cesium.JulianDate | Date | string | number;
785
935
  lon: number;
@@ -1638,20 +1788,26 @@ interface PreviousViewChange {
1638
1788
  current?: CameraView;
1639
1789
  previous?: CameraView;
1640
1790
  }
1791
+ interface FlightPreviewChange {
1792
+ previewing: boolean;
1793
+ }
1641
1794
  /**
1642
1795
  * Lightweight state manager for common UI states:
1643
1796
  * - selection (arbitrary payload)
1644
1797
  * - editing (boolean + optional target)
1645
1798
  * - previous camera view (for simple back navigation)
1799
+ * - flight preview mode (locks interaction)
1646
1800
  */
1647
1801
  declare class StateManager<TSelection = unknown, TEditingTarget = unknown> {
1648
1802
  private selected?;
1649
1803
  private editing;
1650
1804
  private editingTarget?;
1651
1805
  private previousView?;
1806
+ private flightPreviewing;
1652
1807
  readonly onSelectionChange: Emitter<SelectionChange<TSelection>>;
1653
1808
  readonly onEditingChange: Emitter<EditingChange<TEditingTarget>>;
1654
1809
  readonly onPreviousViewChange: Emitter<PreviousViewChange>;
1810
+ readonly onFlightPreviewChange: Emitter<FlightPreviewChange>;
1655
1811
  setSelected(next?: TSelection): void;
1656
1812
  /**
1657
1813
  * 获取当前选中对象。
@@ -1668,6 +1824,22 @@ declare class StateManager<TSelection = unknown, TEditingTarget = unknown> {
1668
1824
  getEditingTarget(): TEditingTarget | undefined;
1669
1825
  setPreviousCameraView(view?: CameraView): void;
1670
1826
  getPreviousCameraView(): CameraView | undefined;
1827
+ /**
1828
+ * 开始飞行预览模式(锁定交互)
1829
+ */
1830
+ startFlightPreview(): void;
1831
+ /**
1832
+ * 停止飞行预览模式(恢复交互)
1833
+ */
1834
+ stopFlightPreview(): void;
1835
+ /**
1836
+ * 检查是否处于飞行预览模式
1837
+ */
1838
+ isFlightPreviewing(): boolean;
1839
+ /**
1840
+ * 检查当前是否允许交互(非编辑模式且非飞行预览模式)
1841
+ */
1842
+ isInteractionAllowed(): boolean;
1671
1843
  }
1672
1844
  declare const globalState: StateManager<any, any>;
1673
1845
 
@@ -2050,4 +2222,4 @@ declare const placeholder: {
2050
2222
  ready: boolean;
2051
2223
  };
2052
2224
 
2053
- export { CZMLManager, type CameraDestinationInput, CameraEventBus, type CameraFOVChangeEvent, CameraFOVController, type CameraFlyOptions, type CameraInitOptions, CameraManager, type CameraOrientation, type CameraPoseChangeEvent, type CameraSetViewOptions, type CameraView, type CesiumAssetsOptions, type ConvertedWaylineData, type ConvertedWaypointData, type CursorPoseChangeEvent, type CzmlExportOptions, type CzmlImportOptions, type EditingChange, Emitter, type FOVChangeEvent, type FOVControllerOptions, type FlightPathPreviewController, type FlyToOptions, FrustumPyramid, type FrustumPyramidOptions, type FrustumShapeChangeEvent, type ImageryOptions, type ImageryProviderKind, type InitOptions, type LayerEvents, type LayerHandle, LayerManager, type LayerType, type Listener, type LonLatHeight, type Orientation, type PathEditingSaveResult, type PathOptions, type PathToSinoflyOptions, type PhotoBillboardItem, type PhotoBillboardLayerOptions, type PhotoBillboardResult, type PolygonDrawingOptions, type PolygonEditingSession, PolygonEditor, type PreviousViewChange, type QuickEditOptions, type RenderFlightPathOptions, type RenderFlightPathPreviewOptions, SceneManager, type SceneOptions, type SelectionChange, type SelectionResult, type SelectionSession, Selector, type ShapeLineProps, type ShapePointProps, type ShapePolygonProps, type SinoflyAdapterOptions, type SinoflyWaylineData, type SinoflyWaypointInfo, StateManager, type TerrainKind, type TerrainOptions, type Toggle2D3DContext, type Toggle2D3DOptions, type VersionInfo, assertCesiumAssetsConfigured, configureCesiumAssets, configureCesiumIonToken, convertPathToSinofly, convertSinoflyWayline, convertSinoflyWaylines, ensureCesiumIonToken, getCesiumBaseUrl, getCesiumIonToken, globalCameraEventBus, globalState, placeholder, renderFlightPath, renderFlightPathPreview, toggle2D3D, version, versionInfo };
2225
+ export { CZMLManager, type CameraDestinationInput, CameraEventBus, type CameraFOVChangeEvent, CameraFOVController, type CameraFlyOptions, type CameraInitOptions, CameraManager, type CameraOrientation, type CameraPoseChangeEvent, type CameraSetViewOptions, type CameraView, type CesiumAssetsOptions, type ConvertedWaylineData, type ConvertedWaypointData, type CursorPoseChangeEvent, type CzmlExportOptions, type CzmlImportOptions, type EditingChange, Emitter, type FOVChangeEvent, type FOVControllerOptions, type FlightPathPreviewController, type FlightPreviewChange, FlightPreviewController, type FlightPreviewOptions, type FlightPreviewState, type FlyToOptions, FrustumPyramid, type FrustumPyramidOptions, type FrustumShapeChangeEvent, type ImageryOptions, type ImageryProviderKind, type InitOptions, type LayerEvents, type LayerHandle, LayerManager, type LayerType, type Listener, type LonLatHeight, type Orientation, type PathEditingSaveResult, type PathOptions, type PathToSinoflyOptions, type PhotoBillboardItem, type PhotoBillboardLayerOptions, type PhotoBillboardResult, type PolygonDrawingOptions, type PolygonEditingSession, PolygonEditor, type PreviousViewChange, type ProgressChangeEvent, type QuickEditOptions, type RenderFlightPathOptions, type RenderFlightPathPreviewOptions, SceneManager, type SceneOptions, type SelectionChange, type SelectionResult, type SelectionSession, Selector, type ShapeLineProps, type ShapePointProps, type ShapePolygonProps, type SinoflyAdapterOptions, type SinoflyWaylineData, type SinoflyWaypointInfo, type StateChangeEvent, StateManager, type TerrainKind, type TerrainOptions, type Toggle2D3DContext, type Toggle2D3DOptions, type TrackHighlightOptions, type VersionInfo, assertCesiumAssetsConfigured, configureCesiumAssets, configureCesiumIonToken, convertPathToSinofly, convertSinoflyWayline, convertSinoflyWaylines, ensureCesiumIonToken, getCesiumBaseUrl, getCesiumIonToken, globalCameraEventBus, globalState, placeholder, renderFlightPath, renderFlightPathPreview, toggle2D3D, version, versionInfo };