@jorgmoritz/gis-manager 0.1.36 → 0.1.38

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.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as Cesium from 'cesium';
2
- export { V as VertexDetailInfo, b as VertexDragMoveInfo, a as VertexOperationInfo, c as WaypointBatchUpdate, W as WaypointUpdateData } from './VertexDetailInfo-Cz9y16HG.js';
2
+ export { V as VertexDetailInfo, b as VertexDragMoveInfo, a as VertexOperationInfo, c as WaypointBatchUpdate, W as WaypointUpdateData } from './VertexDetailInfo-DYr1P_fe.js';
3
3
 
4
4
  interface InitOptions {
5
5
  appName?: string;
@@ -440,6 +440,12 @@ interface SinoflyWaypointInfo {
440
440
  createTime?: string;
441
441
  modifyUserId?: string;
442
442
  modifyTime?: string;
443
+ /** 🆕 椭球高度(WGS84 椭球面以上的高度,米) */
444
+ ellipsoidHeight?: number;
445
+ /** 🆕 相对高度(根据 altitudeMode 计算:海拔高度或相对地形高度,米) */
446
+ relativeHeight?: number;
447
+ /** 🆕 是否使用全局默认高度(true: 高度=defaultAltitude, false: 高度=实际计算值) */
448
+ useGlobalHeight?: boolean;
443
449
  }
444
450
  /**
445
451
  * Sinofly 航线路数据结构接口
@@ -485,6 +491,8 @@ interface ConvertedWaypointData {
485
491
  roll: number;
486
492
  fov: number;
487
493
  index: number;
494
+ /** 🆕 是否使用全局默认高度(true: 高度=defaultAltitude, false: 高度=实际计算值) */
495
+ useGlobalHeight?: boolean;
488
496
  }
489
497
  /**
490
498
  * 转换后的航线路数据格式
@@ -506,8 +514,8 @@ interface ConvertedWaylineData {
506
514
  subarrayId?: number;
507
515
  stationName?: string;
508
516
  subarrayName?: string;
509
- takeOffSecurityHeight?: number;
510
- hasTakeOffRefPoint?: boolean;
517
+ /** 爬升高度(基础高度偏移) */
518
+ climbHeight?: number;
511
519
  [key: string]: any;
512
520
  };
513
521
  }
@@ -653,24 +661,17 @@ interface RenderFlightPathOptions {
653
661
  color?: Cesium.Color;
654
662
  material?: Cesium.MaterialProperty | Cesium.Color;
655
663
  };
656
- hasHiddenClimb?: boolean;
657
664
  altitudeMode?: string;
658
665
  climbHeight?: number;
659
666
  }
660
667
  /**
661
- * 回显飞航路线:显示完整飞航路线、航点编号和起始点箭头
668
+ * 回显飞航路线:显示完整飞航路线和航点编号
662
669
  *
663
670
  * 接收 Sinofly 航线路数据,自动转换为本库格式并渲染显示。
664
671
  *
665
672
  * 航点逻辑说明:
666
- * - index 0: 起始点(起飞点),显示起始箭头(仅当有 takeOffRefPoint 时)
667
- * - index 1: 隐藏转折点(隐藏爬升点),不显示标签(仅当有 takeOffRefPoint 时)
668
- * - index 2: 第一个航线点,标记为 "S"
669
- * - index 3+: 后续航线点,标记为 2, 3, 4...
670
- *
671
- * 如果没有 takeOffRefPoint,则:
672
673
  * - index 0: 第一个航线点,标记为 "S"
673
- * - index 1+: 后续航线点,标记为 2, 3, 4...
674
+ * - index 1+: 后续航线点,标记为 1, 2, 3...
674
675
  *
675
676
  * @param CesiumNS Cesium 命名空间
676
677
  * @param viewer Cesium Viewer 实例
@@ -683,8 +684,6 @@ interface RenderFlightPathOptions {
683
684
  * const sinoflyData = {
684
685
  * waylineId: "12345",
685
686
  * waylineName: "测试航线",
686
- * takeOffSecurityHeight: 50,
687
- * takeOffRefPoint: '{"longitude": 116.4074, "latitude": 39.9042, "height": 100}',
688
687
  * waypointInfo: [
689
688
  * {
690
689
  * index: 0,
@@ -707,21 +706,6 @@ interface RenderFlightPathOptions {
707
706
  * layer: myLayer,
708
707
  * style: { width: 8, color: Cesium.Color.GREEN }
709
708
  * });
710
- *
711
- * // 自定义样式
712
- * const entity = renderFlightPath(Cesium, viewer, {
713
- * data: sinoflyData,
714
- * id: 'my-flight-path',
715
- * name: '自定义航线名称',
716
- * style: {
717
- * width: 10,
718
- * material: new Cesium.PolylineOutlineMaterialProperty({
719
- * color: Cesium.Color.BLUE,
720
- * outlineColor: Cesium.Color.WHITE,
721
- * outlineWidth: 2
722
- * })
723
- * }
724
- * });
725
709
  * ```
726
710
  */
727
711
  declare function renderFlightPath(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, options: RenderFlightPathOptions): Entity$1;
@@ -780,6 +764,128 @@ declare function renderFlightPathPreview(CesiumNS: typeof Cesium, viewer: Cesium
780
764
  controller: FlightPathPreviewController;
781
765
  };
782
766
 
767
+ /**
768
+ * 飞行仿真状态
769
+ */
770
+ type FlightSimulatorState = 'idle' | 'playing' | 'paused' | 'stopped';
771
+ /**
772
+ * 飞行仿真状态变化事件
773
+ */
774
+ interface FlightSimulatorStateChangeEvent {
775
+ state: FlightSimulatorState;
776
+ progress?: number;
777
+ }
778
+ /**
779
+ * 飞行仿真控制器接口
780
+ */
781
+ interface FlightSimulatorController {
782
+ /** 开始播放 */
783
+ start(): void;
784
+ /** 暂停 */
785
+ pause(): void;
786
+ /** 恢复播放 */
787
+ resume(): void;
788
+ /** 停止并重置 */
789
+ stop(): void;
790
+ /** 销毁并清理资源 */
791
+ destroy(): void;
792
+ /** 设置飞行速度 (m/s) */
793
+ setSpeed(speed: number): void;
794
+ /** 获取当前状态 */
795
+ getState(): FlightSimulatorState;
796
+ /** 获取当前进度 (0-1) */
797
+ getProgress(): number;
798
+ /** 状态变化事件 */
799
+ onStateChange: Emitter<FlightSimulatorStateChangeEvent>;
800
+ }
801
+ /**
802
+ * 航迹高亮选项
803
+ */
804
+ interface TrackHighlightOptions {
805
+ enabled: boolean;
806
+ color?: Cesium.Color;
807
+ width?: number;
808
+ }
809
+ /**
810
+ * 飞行仿真选项
811
+ */
812
+ interface FlightSimulatorOptions {
813
+ /** Sinofly 航线数据 */
814
+ waylineData: SinoflyWaylineData;
815
+ /** 飞行速度 (m/s),默认 10 */
816
+ speed?: number;
817
+ /** 是否循环播放,默认 false */
818
+ loop?: boolean;
819
+ /** 是否显示视锥体,默认 true(AirplaneCursor 已内置视锥体) */
820
+ showFrustum?: boolean;
821
+ /** 航迹高亮选项 */
822
+ trackHighlight?: TrackHighlightOptions;
823
+ /** 自定义图层 */
824
+ layer?: Cesium.CustomDataSource;
825
+ }
826
+ /**
827
+ * 飞行仿真器
828
+ *
829
+ * 沿航线路径移动飞机模型,支持播放控制、速度调节和循环播放
830
+ */
831
+ declare class FlightSimulator implements FlightSimulatorController {
832
+ private CesiumNS;
833
+ private viewer;
834
+ private options;
835
+ private state;
836
+ private progress;
837
+ private waypoints;
838
+ private totalDistance;
839
+ private currentDistance;
840
+ private airplaneCursor?;
841
+ private trackEntity?;
842
+ private passedTrackEntity?;
843
+ private animationFrameId?;
844
+ private lastTimestamp?;
845
+ readonly onStateChange: Emitter<FlightSimulatorStateChangeEvent>;
846
+ constructor(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, options: FlightSimulatorOptions);
847
+ /**
848
+ * 初始化航点数据
849
+ */
850
+ private initWaypoints;
851
+ /**
852
+ * 创建可视化实体
853
+ */
854
+ private createEntities;
855
+ /**
856
+ * 创建航迹高亮
857
+ */
858
+ private createTrackHighlight;
859
+ /**
860
+ * 获取当前位置
861
+ */
862
+ private getCurrentPosition;
863
+ /**
864
+ * 获取当前姿态(用于更新 AirplaneCursor)
865
+ */
866
+ private getCurrentPose;
867
+ /**
868
+ * 获取已飞过的位置数组
869
+ */
870
+ private getPassedPositions;
871
+ /**
872
+ * 动画循环
873
+ */
874
+ private animate;
875
+ /**
876
+ * 设置状态并发射事件
877
+ */
878
+ private setState;
879
+ start(): void;
880
+ pause(): void;
881
+ resume(): void;
882
+ stop(): void;
883
+ destroy(): void;
884
+ setSpeed(speed: number): void;
885
+ getState(): FlightSimulatorState;
886
+ getProgress(): number;
887
+ }
888
+
783
889
  type PathSample = {
784
890
  time: Cesium.JulianDate | Date | string | number;
785
891
  lon: number;
@@ -1270,6 +1376,11 @@ declare class PolygonEditor {
1270
1376
  height?: number;
1271
1377
  }>;
1272
1378
  }): Cesium.Entity | null;
1379
+ /**
1380
+ * 辅助方法:使用地形采样创建标签
1381
+ * 先尝试获取地形高度,如果失败则使用 heightReference
1382
+ */
1383
+ private createLabelWithTerrainHeight;
1273
1384
  /**
1274
1385
  * 辅助方法:从实体中提取经纬度高度数组
1275
1386
  * @param entity 多边形实体
@@ -1723,6 +1834,128 @@ declare class Selector {
1723
1834
  }): SelectionSession;
1724
1835
  }
1725
1836
 
1837
+ /**
1838
+ * 点云拾取工具
1839
+ * 专门用于拾取 3D 点云(Cesium3DTileset)并返回坐标和属性信息
1840
+ */
1841
+
1842
+ /**
1843
+ * 点云拾取结果
1844
+ */
1845
+ interface PointCloudPickResult {
1846
+ /** 是否成功拾取到点云 */
1847
+ success: boolean;
1848
+ /** 拾取点的世界坐标(Cartesian3) */
1849
+ position?: Cesium.Cartesian3;
1850
+ /** 拾取点的经纬度坐标 */
1851
+ coordinates?: {
1852
+ longitude: number;
1853
+ latitude: number;
1854
+ height: number;
1855
+ };
1856
+ /** 拾取到的 Tileset 对象 */
1857
+ tileset?: Cesium.Cesium3DTileset;
1858
+ /** 拾取到的 Tile 内容 */
1859
+ content?: Cesium.Cesium3DTileContent;
1860
+ /** 点的特征 ID(如果有) */
1861
+ featureId?: number;
1862
+ /** 点的属性(如强度、分类等) */
1863
+ properties?: Record<string, any>;
1864
+ /** 点的颜色(如果可获取) */
1865
+ color?: {
1866
+ red: number;
1867
+ green: number;
1868
+ blue: number;
1869
+ alpha: number;
1870
+ };
1871
+ /** 屏幕坐标 */
1872
+ screenPosition?: {
1873
+ x: number;
1874
+ y: number;
1875
+ };
1876
+ }
1877
+ /**
1878
+ * 点云拾取会话
1879
+ */
1880
+ interface PointCloudPickSession {
1881
+ /** 停止拾取会话 */
1882
+ stop: () => void;
1883
+ /** 暂停拾取(不移除事件,只是不触发回调) */
1884
+ pause: () => void;
1885
+ /** 恢复拾取 */
1886
+ resume: () => void;
1887
+ /** 是否处于暂停状态 */
1888
+ isPaused: () => boolean;
1889
+ }
1890
+ /**
1891
+ * 点云拾取选项
1892
+ */
1893
+ interface PointCloudPickerOptions {
1894
+ /** 鼠标光标样式,默认 'crosshair' */
1895
+ cursor?: string;
1896
+ /** 是否在拾取时显示标记点,默认 true */
1897
+ showMarker?: boolean;
1898
+ /** 标记点颜色,默认黄色 */
1899
+ markerColor?: Cesium.Color;
1900
+ /** 标记点大小(像素),默认 10 */
1901
+ markerSize?: number;
1902
+ /** 是否只拾取点云(忽略其他实体),默认 true */
1903
+ pointCloudOnly?: boolean;
1904
+ /** 是否尝试获取点的属性,默认 true */
1905
+ fetchProperties?: boolean;
1906
+ }
1907
+ /**
1908
+ * 点云拾取工具类
1909
+ */
1910
+ declare class PointCloudPicker {
1911
+ private CesiumNS;
1912
+ private viewer;
1913
+ private handler?;
1914
+ private markerEntity?;
1915
+ private isPaused;
1916
+ constructor(CesiumNS: typeof Cesium, viewer: Cesium.Viewer);
1917
+ /**
1918
+ * 在指定屏幕位置进行一次点云拾取
1919
+ * @param windowPosition 屏幕坐标 { x, y }
1920
+ * @param options 拾取选项
1921
+ * @returns 拾取结果
1922
+ */
1923
+ pickAt(windowPosition: {
1924
+ x: number;
1925
+ y: number;
1926
+ }, options?: {
1927
+ fetchProperties?: boolean;
1928
+ pointCloudOnly?: boolean;
1929
+ }): PointCloudPickResult;
1930
+ /**
1931
+ * 开启点云拾取会话
1932
+ * @param onPick 拾取回调函数
1933
+ * @param options 拾取选项
1934
+ * @returns 拾取会话对象
1935
+ */
1936
+ startPicking(onPick: (result: PointCloudPickResult) => void, options?: PointCloudPickerOptions): PointCloudPickSession;
1937
+ /**
1938
+ * 停止拾取会话
1939
+ */
1940
+ private stopPicking;
1941
+ /**
1942
+ * 显示标记点
1943
+ */
1944
+ private showMarker;
1945
+ /**
1946
+ * 移除标记点
1947
+ */
1948
+ removeMarker(): void;
1949
+ /**
1950
+ * 获取当前标记点位置
1951
+ */
1952
+ getMarkerPosition(): Cesium.Cartesian3 | undefined;
1953
+ /**
1954
+ * 销毁拾取器
1955
+ */
1956
+ destroy(): void;
1957
+ }
1958
+
1726
1959
  interface FOVControllerOptions {
1727
1960
  /** 初始 FOV 值(度) */
1728
1961
  initialFOV?: number;
@@ -1947,6 +2180,13 @@ declare class FrustumPyramid {
1947
2180
  clear(): void;
1948
2181
  }
1949
2182
 
2183
+ /**
2184
+ * 高度计算模式类型
2185
+ * - absolute: 海平面高度(绝对高度)
2186
+ * - relativeToGround: 相对地形高度
2187
+ * - relativeToStart: 相对起飞点高度
2188
+ */
2189
+ type AltitudeMode = 'absolute' | 'relativeToGround' | 'relativeToStart';
1950
2190
  /**
1951
2191
  * 🆕 快速编辑模式配置选项
1952
2192
  */
@@ -1959,6 +2199,56 @@ interface QuickEditOptions {
1959
2199
  altitudeMode?: 'absolute' | 'relativeToStart' | 'relativeToGround';
1960
2200
  }
1961
2201
 
2202
+ /**
2203
+ * 地形高度查询工具
2204
+ * 提供异步批量查询和同步回退两种方式
2205
+ */
2206
+ /**
2207
+ * 异步批量查询地形高度
2208
+ * 使用 sampleTerrainMostDetailed 进行精确的地形高度查询
2209
+ * @param CesiumNS Cesium 命名空间
2210
+ * @param viewer Cesium Viewer 实例
2211
+ * @param positions 需要查询的位置数组(Cartesian3)
2212
+ * @returns 每个位置对应的地形高度数组
2213
+ */
2214
+ declare function queryTerrainHeights(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, positions: Cesium.Cartesian3[]): Promise<number[]>;
2215
+ /**
2216
+ * 同步查询单个位置的地形高度
2217
+ * 使用 globe.getHeight 作为回退方案
2218
+ * @param CesiumNS Cesium 命名空间
2219
+ * @param viewer Cesium Viewer 实例
2220
+ * @param position 需要查询的位置(Cartesian3)
2221
+ * @returns 地形高度(无法获取时返回 0)
2222
+ */
2223
+ declare function queryTerrainHeightSync(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, position: Cesium.Cartesian3): number;
2224
+ /**
2225
+ * 查询单个位置的地形高度(异步)
2226
+ * @param CesiumNS Cesium 命名空间
2227
+ * @param viewer Cesium Viewer 实例
2228
+ * @param position 需要查询的位置(Cartesian3)
2229
+ * @returns 地形高度
2230
+ */
2231
+ declare function queryTerrainHeightAsync(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, position: Cesium.Cartesian3): Promise<number>;
2232
+ /**
2233
+ * 根据高度模式计算航点的绝对高度
2234
+ * @param CesiumNS Cesium 命名空间
2235
+ * @param altitudeMode 高度模式
2236
+ * @param defaultAltitude 默认高度(相对高度值)
2237
+ * @param startPointAltitude 起飞点高度(用于 relativeToStart 模式)
2238
+ * @param terrainHeight 地形高度(用于 relativeToGround 模式)
2239
+ * @returns 计算后的绝对高度
2240
+ */
2241
+ declare function calculateAbsoluteHeight(altitudeMode: 'absolute' | 'relativeToGround' | 'relativeToStart', defaultAltitude: number, startPointAltitude: number, terrainHeight: number): number;
2242
+ /**
2243
+ * 根据高度模式计算航点的相对高度
2244
+ * @param altitudeMode 高度模式
2245
+ * @param absoluteHeight 绝对高度
2246
+ * @param startPointAltitude 起飞点高度
2247
+ * @param terrainHeight 地形高度
2248
+ * @returns 相对高度
2249
+ */
2250
+ declare function calculateRelativeHeight(altitudeMode: 'absolute' | 'relativeToGround' | 'relativeToStart', absoluteHeight: number, startPointAltitude: number, terrainHeight: number): number;
2251
+
1962
2252
  /**
1963
2253
  * Path 编辑保存结果数据接口
1964
2254
  * 对应 pathEditing.ts 中 saveAndStop() 返回的数据结构
@@ -1966,9 +2256,6 @@ interface QuickEditOptions {
1966
2256
  interface PathEditingSaveResult {
1967
2257
  entity: Cesium.Entity;
1968
2258
  positions: Cesium.Cartesian3[];
1969
- startPoint: {
1970
- position: Cesium.Cartesian3;
1971
- };
1972
2259
  climbHeight?: number;
1973
2260
  waypointData: Array<{
1974
2261
  position: Cesium.Cartesian3;
@@ -1978,9 +2265,16 @@ interface PathEditingSaveResult {
1978
2265
  fov: number;
1979
2266
  index: number;
1980
2267
  distance: number;
2268
+ /** 椭球高度(WGS84 椭球面以上的高度) */
2269
+ ellipsoidHeight?: number;
2270
+ /** 相对高度(根据 altitudeMode 计算) */
2271
+ relativeHeight?: number;
2272
+ /** 🆕 是否使用全局默认高度(true: 高度=defaultAltitude, false: 高度=实际计算值) */
2273
+ useGlobalHeight?: boolean;
1981
2274
  }>;
1982
2275
  altitudeMode?: string;
1983
- hasHiddenClimb?: boolean;
2276
+ /** 航线默认高度(米) */
2277
+ defaultAltitude?: number;
1984
2278
  }
1985
2279
  /**
1986
2280
  * Path 到 Sinofly 转换选项
@@ -2180,4 +2474,4 @@ declare const placeholder: {
2180
2474
  ready: boolean;
2181
2475
  };
2182
2476
 
2183
- 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 PathSafetyCheckOptions, type PathSafetyCheckResult, PathSafetyChecker, 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 SegmentSafetyResult, 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 };
2477
+ export { type AltitudeMode, 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, FlightSimulator, type FlightSimulatorController, type FlightSimulatorOptions, type FlightSimulatorState, type FlightSimulatorStateChangeEvent, 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 PathSafetyCheckOptions, type PathSafetyCheckResult, PathSafetyChecker, type PathToSinoflyOptions, type PhotoBillboardItem, type PhotoBillboardLayerOptions, type PhotoBillboardResult, type PointCloudPickResult, type PointCloudPickSession, PointCloudPicker, type PointCloudPickerOptions, type PolygonDrawingOptions, type PolygonEditingSession, PolygonEditor, type PreviousViewChange, type QuickEditOptions, type RenderFlightPathOptions, type RenderFlightPathPreviewOptions, SceneManager, type SceneOptions, type SegmentSafetyResult, 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, calculateAbsoluteHeight, calculateRelativeHeight, configureCesiumAssets, configureCesiumIonToken, convertPathToSinofly, convertSinoflyWayline, convertSinoflyWaylines, ensureCesiumIonToken, getCesiumBaseUrl, getCesiumIonToken, globalCameraEventBus, globalState, placeholder, queryTerrainHeightAsync, queryTerrainHeightSync, queryTerrainHeights, renderFlightPath, renderFlightPathPreview, toggle2D3D, version, versionInfo };