@jorgmoritz/gis-manager 0.1.43 → 0.1.45
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.cjs +524 -58
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +138 -1
- package/dist/index.d.ts +138 -1
- package/dist/index.js +520 -59
- package/dist/index.js.map +1 -1
- package/dist/vue/index.cjs +341 -55
- package/dist/vue/index.cjs.map +1 -1
- package/dist/vue/index.js +341 -55
- package/dist/vue/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2595,6 +2595,141 @@ declare function calculateAbsoluteHeight(altitudeMode: 'absolute' | 'relativeToG
|
|
|
2595
2595
|
*/
|
|
2596
2596
|
declare function calculateRelativeHeight(altitudeMode: 'absolute' | 'relativeToGround' | 'relativeToStart', absoluteHeight: number, startPointAltitude: number, terrainHeight: number): number;
|
|
2597
2597
|
|
|
2598
|
+
/**
|
|
2599
|
+
* 几何计算工具函数
|
|
2600
|
+
* 提供两点之间的距离和中点计算
|
|
2601
|
+
*/
|
|
2602
|
+
|
|
2603
|
+
/**
|
|
2604
|
+
* 计算两点之间的距离和中点
|
|
2605
|
+
* @param CesiumNS Cesium 命名空间
|
|
2606
|
+
* @param point1 第一个点 (Cartesian3)
|
|
2607
|
+
* @param point2 第二个点 (Cartesian3)
|
|
2608
|
+
* @returns { distance: number, midpoint: Cartesian3 }
|
|
2609
|
+
*/
|
|
2610
|
+
declare function calculateDistanceAndMidpoint(CesiumNS: typeof Cesium, point1: Cesium.Cartesian3, point2: Cesium.Cartesian3): {
|
|
2611
|
+
distance: number;
|
|
2612
|
+
midpoint: Cesium.Cartesian3;
|
|
2613
|
+
};
|
|
2614
|
+
/**
|
|
2615
|
+
* 计算两点之间的距离
|
|
2616
|
+
* @param CesiumNS Cesium 命名空间
|
|
2617
|
+
* @param point1 第一个点 (Cartesian3)
|
|
2618
|
+
* @param point2 第二个点 (Cartesian3)
|
|
2619
|
+
* @returns 距离(米)
|
|
2620
|
+
*/
|
|
2621
|
+
declare function calculateDistance(CesiumNS: typeof Cesium, point1: Cesium.Cartesian3, point2: Cesium.Cartesian3): number;
|
|
2622
|
+
/**
|
|
2623
|
+
* 计算两点的中点坐标
|
|
2624
|
+
* @param CesiumNS Cesium 命名空间
|
|
2625
|
+
* @param point1 第一个点 (Cartesian3)
|
|
2626
|
+
* @param point2 第二个点 (Cartesian3)
|
|
2627
|
+
* @returns 中点 (Cartesian3)
|
|
2628
|
+
*/
|
|
2629
|
+
declare function calculateMidpoint(CesiumNS: typeof Cesium, point1: Cesium.Cartesian3, point2: Cesium.Cartesian3): Cesium.Cartesian3;
|
|
2630
|
+
/**
|
|
2631
|
+
* 计算从 point1 指向 point2 的航向角(度)
|
|
2632
|
+
* @param CesiumNS Cesium 命名空间
|
|
2633
|
+
* @param point1 起点 (Cartesian3)
|
|
2634
|
+
* @param point2 终点 (Cartesian3)
|
|
2635
|
+
* @returns 航向角(度,范围 [-180, 180])
|
|
2636
|
+
*/
|
|
2637
|
+
declare function calculateHeadingBetweenPoints(CesiumNS: typeof Cesium, point1: Cesium.Cartesian3, point2: Cesium.Cartesian3): number;
|
|
2638
|
+
|
|
2639
|
+
/**
|
|
2640
|
+
* 实时航点数据
|
|
2641
|
+
*/
|
|
2642
|
+
interface RealtimeWaypoint {
|
|
2643
|
+
longitude: number;
|
|
2644
|
+
latitude: number;
|
|
2645
|
+
altitude: number;
|
|
2646
|
+
heading?: number;
|
|
2647
|
+
pitch?: number;
|
|
2648
|
+
roll?: number;
|
|
2649
|
+
timestamp?: number;
|
|
2650
|
+
}
|
|
2651
|
+
/**
|
|
2652
|
+
* 轨迹样式选项
|
|
2653
|
+
*/
|
|
2654
|
+
interface TrackStyleOptions {
|
|
2655
|
+
/** 轨迹颜色 */
|
|
2656
|
+
color?: Cesium.Color;
|
|
2657
|
+
/** 轨迹线宽 */
|
|
2658
|
+
width?: number;
|
|
2659
|
+
/** 是否贴地 */
|
|
2660
|
+
clampToGround?: boolean;
|
|
2661
|
+
/** 最大轨迹点数(防止内存溢出),默认 1000 */
|
|
2662
|
+
maxPoints?: number;
|
|
2663
|
+
}
|
|
2664
|
+
/**
|
|
2665
|
+
* 实时飞行追踪器选项
|
|
2666
|
+
*/
|
|
2667
|
+
interface RealtimeFlightTrackerOptions {
|
|
2668
|
+
/** 是否显示飞过的轨迹,默认 true */
|
|
2669
|
+
showTrack?: boolean;
|
|
2670
|
+
/** 轨迹样式 */
|
|
2671
|
+
trackStyle?: TrackStyleOptions;
|
|
2672
|
+
/** 视锥体角度,默认 50 */
|
|
2673
|
+
fovDeg?: number;
|
|
2674
|
+
/** 自定义图层 */
|
|
2675
|
+
layer?: Cesium.CustomDataSource;
|
|
2676
|
+
}
|
|
2677
|
+
/**
|
|
2678
|
+
* 实时飞行追踪器
|
|
2679
|
+
*
|
|
2680
|
+
* 用于接收 WebSocket 推送的实时航点数据,更新飞机位置并绘制飞过的轨迹
|
|
2681
|
+
*/
|
|
2682
|
+
declare class RealtimeFlightTracker {
|
|
2683
|
+
private CesiumNS;
|
|
2684
|
+
private viewer;
|
|
2685
|
+
private options;
|
|
2686
|
+
private airplaneCursor?;
|
|
2687
|
+
private trackEntity?;
|
|
2688
|
+
private trackPositions;
|
|
2689
|
+
private isInitialized;
|
|
2690
|
+
constructor(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, options?: RealtimeFlightTrackerOptions);
|
|
2691
|
+
/**
|
|
2692
|
+
* 更新飞机位置(接收新航点)
|
|
2693
|
+
* @param waypoint 实时航点数据
|
|
2694
|
+
*/
|
|
2695
|
+
updatePosition(waypoint: RealtimeWaypoint): void;
|
|
2696
|
+
/**
|
|
2697
|
+
* 初始化飞机和轨迹实体
|
|
2698
|
+
*/
|
|
2699
|
+
private initialize;
|
|
2700
|
+
/**
|
|
2701
|
+
* 创建轨迹实体
|
|
2702
|
+
*/
|
|
2703
|
+
private createTrackEntity;
|
|
2704
|
+
/**
|
|
2705
|
+
* 添加轨迹点
|
|
2706
|
+
*/
|
|
2707
|
+
private addTrackPoint;
|
|
2708
|
+
/**
|
|
2709
|
+
* 清除轨迹
|
|
2710
|
+
*/
|
|
2711
|
+
clearTrack(): void;
|
|
2712
|
+
/**
|
|
2713
|
+
* 获取当前轨迹点数
|
|
2714
|
+
*/
|
|
2715
|
+
getTrackPointCount(): number;
|
|
2716
|
+
/**
|
|
2717
|
+
* 设置轨迹可见性
|
|
2718
|
+
*/
|
|
2719
|
+
setTrackVisible(visible: boolean): void;
|
|
2720
|
+
/**
|
|
2721
|
+
* 飞到当前飞机位置
|
|
2722
|
+
*/
|
|
2723
|
+
flyToAirplane(options?: {
|
|
2724
|
+
height?: number;
|
|
2725
|
+
duration?: number;
|
|
2726
|
+
}): void;
|
|
2727
|
+
/**
|
|
2728
|
+
* 销毁并清理资源
|
|
2729
|
+
*/
|
|
2730
|
+
destroy(): void;
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2598
2733
|
/**
|
|
2599
2734
|
* Path 编辑保存结果数据接口
|
|
2600
2735
|
* 对应 pathEditing.ts 中 saveAndStop() 返回的数据结构
|
|
@@ -2617,6 +2752,8 @@ interface PathEditingSaveResult {
|
|
|
2617
2752
|
relativeHeight?: number;
|
|
2618
2753
|
/** 🆕 是否使用全局默认高度(true: 高度=defaultAltitude, false: 高度=实际计算值) */
|
|
2619
2754
|
useGlobalHeight?: boolean;
|
|
2755
|
+
/** 🆕 航点ID(原有航点保留ID,新插入航点为 undefined) */
|
|
2756
|
+
waypointId?: string | number;
|
|
2620
2757
|
}>;
|
|
2621
2758
|
altitudeMode?: string;
|
|
2622
2759
|
/** 航线默认高度(米) */
|
|
@@ -2821,4 +2958,4 @@ declare const placeholder: {
|
|
|
2821
2958
|
};
|
|
2822
2959
|
declare const droneModelUrl: string;
|
|
2823
2960
|
|
|
2824
|
-
export { type AltitudeMode, CZMLManager, type CameraDestinationInput, CameraEventBus, type CameraFOVChangeEvent, CameraFOVController, type CameraFlyOptions, type CameraInitOptions, CameraManager, type CameraOrientation, type CameraPoseChangeEvent, type CameraSetViewOptions, type CameraView, type CaptureWithViewOptions, 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 FlyToBoundsOptions, type FlyToOptions, FrustumPyramid, type FrustumPyramidOptions, type FrustumShapeChangeEvent, type GeoBounds, type GeoPoint, type ImageryOptions, type ImageryProviderKind, type InitOptions, type LayerEvents, type LayerHandle, LayerManager, type LayerType, type Listener, type LoadMapLayersResult, type LoadSliceJsonOptions, type LoadSliceJsonResult, type LonLatHeight, type MapLayerConfig, 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 ScreenshotOptions, type ScreenshotResult, type SegmentSafetyResult, type SelectionChange, type SelectionResult, type SelectionSession, Selector, type ShapeLineProps, type ShapePointProps, type ShapePolygonProps, type SinoflyAdapterOptions, type SinoflyWaylineData, type SinoflyWaypointInfo, type SliceJsonData, StateManager, type TerrainKind, type TerrainOptions, type Toggle2D3DContext, type Toggle2D3DOptions, type VersionInfo, assertCesiumAssetsConfigured, calculateAbsoluteHeight, calculateBoundsDiagonal, calculateGeoBounds, calculateRelativeHeight, configureCesiumAssets, configureCesiumIonToken, convertPathToSinofly, convertSinoflyWayline, convertSinoflyWaylines, droneModelUrl, ensureCesiumIonToken, expandBounds, getCesiumBaseUrl, getCesiumIonToken, globalCameraEventBus, globalState, isPointInBounds, mergeBounds, placeholder, queryTerrainHeightAsync, queryTerrainHeightByLonLat, queryTerrainHeightByLonLatSync, queryTerrainHeightSync, queryTerrainHeights, queryTerrainHeightsByLonLat, renderFlightPath, renderFlightPathPreview, toggle2D3D, version, versionInfo };
|
|
2961
|
+
export { type AltitudeMode, CZMLManager, type CameraDestinationInput, CameraEventBus, type CameraFOVChangeEvent, CameraFOVController, type CameraFlyOptions, type CameraInitOptions, CameraManager, type CameraOrientation, type CameraPoseChangeEvent, type CameraSetViewOptions, type CameraView, type CaptureWithViewOptions, 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 FlyToBoundsOptions, type FlyToOptions, FrustumPyramid, type FrustumPyramidOptions, type FrustumShapeChangeEvent, type GeoBounds, type GeoPoint, type ImageryOptions, type ImageryProviderKind, type InitOptions, type LayerEvents, type LayerHandle, LayerManager, type LayerType, type Listener, type LoadMapLayersResult, type LoadSliceJsonOptions, type LoadSliceJsonResult, type LonLatHeight, type MapLayerConfig, 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, RealtimeFlightTracker, type RealtimeFlightTrackerOptions, type RealtimeWaypoint, type RenderFlightPathOptions, type RenderFlightPathPreviewOptions, SceneManager, type SceneOptions, type ScreenshotOptions, type ScreenshotResult, type SegmentSafetyResult, type SelectionChange, type SelectionResult, type SelectionSession, Selector, type ShapeLineProps, type ShapePointProps, type ShapePolygonProps, type SinoflyAdapterOptions, type SinoflyWaylineData, type SinoflyWaypointInfo, type SliceJsonData, StateManager, type TerrainKind, type TerrainOptions, type Toggle2D3DContext, type Toggle2D3DOptions, type TrackStyleOptions, type VersionInfo, assertCesiumAssetsConfigured, calculateAbsoluteHeight, calculateBoundsDiagonal, calculateDistance, calculateDistanceAndMidpoint, calculateGeoBounds, calculateHeadingBetweenPoints, calculateMidpoint, calculateRelativeHeight, configureCesiumAssets, configureCesiumIonToken, convertPathToSinofly, convertSinoflyWayline, convertSinoflyWaylines, droneModelUrl, ensureCesiumIonToken, expandBounds, getCesiumBaseUrl, getCesiumIonToken, globalCameraEventBus, globalState, isPointInBounds, mergeBounds, placeholder, queryTerrainHeightAsync, queryTerrainHeightByLonLat, queryTerrainHeightByLonLatSync, queryTerrainHeightSync, queryTerrainHeights, queryTerrainHeightsByLonLat, renderFlightPath, renderFlightPathPreview, toggle2D3D, version, versionInfo };
|
package/dist/index.d.ts
CHANGED
|
@@ -2595,6 +2595,141 @@ declare function calculateAbsoluteHeight(altitudeMode: 'absolute' | 'relativeToG
|
|
|
2595
2595
|
*/
|
|
2596
2596
|
declare function calculateRelativeHeight(altitudeMode: 'absolute' | 'relativeToGround' | 'relativeToStart', absoluteHeight: number, startPointAltitude: number, terrainHeight: number): number;
|
|
2597
2597
|
|
|
2598
|
+
/**
|
|
2599
|
+
* 几何计算工具函数
|
|
2600
|
+
* 提供两点之间的距离和中点计算
|
|
2601
|
+
*/
|
|
2602
|
+
|
|
2603
|
+
/**
|
|
2604
|
+
* 计算两点之间的距离和中点
|
|
2605
|
+
* @param CesiumNS Cesium 命名空间
|
|
2606
|
+
* @param point1 第一个点 (Cartesian3)
|
|
2607
|
+
* @param point2 第二个点 (Cartesian3)
|
|
2608
|
+
* @returns { distance: number, midpoint: Cartesian3 }
|
|
2609
|
+
*/
|
|
2610
|
+
declare function calculateDistanceAndMidpoint(CesiumNS: typeof Cesium, point1: Cesium.Cartesian3, point2: Cesium.Cartesian3): {
|
|
2611
|
+
distance: number;
|
|
2612
|
+
midpoint: Cesium.Cartesian3;
|
|
2613
|
+
};
|
|
2614
|
+
/**
|
|
2615
|
+
* 计算两点之间的距离
|
|
2616
|
+
* @param CesiumNS Cesium 命名空间
|
|
2617
|
+
* @param point1 第一个点 (Cartesian3)
|
|
2618
|
+
* @param point2 第二个点 (Cartesian3)
|
|
2619
|
+
* @returns 距离(米)
|
|
2620
|
+
*/
|
|
2621
|
+
declare function calculateDistance(CesiumNS: typeof Cesium, point1: Cesium.Cartesian3, point2: Cesium.Cartesian3): number;
|
|
2622
|
+
/**
|
|
2623
|
+
* 计算两点的中点坐标
|
|
2624
|
+
* @param CesiumNS Cesium 命名空间
|
|
2625
|
+
* @param point1 第一个点 (Cartesian3)
|
|
2626
|
+
* @param point2 第二个点 (Cartesian3)
|
|
2627
|
+
* @returns 中点 (Cartesian3)
|
|
2628
|
+
*/
|
|
2629
|
+
declare function calculateMidpoint(CesiumNS: typeof Cesium, point1: Cesium.Cartesian3, point2: Cesium.Cartesian3): Cesium.Cartesian3;
|
|
2630
|
+
/**
|
|
2631
|
+
* 计算从 point1 指向 point2 的航向角(度)
|
|
2632
|
+
* @param CesiumNS Cesium 命名空间
|
|
2633
|
+
* @param point1 起点 (Cartesian3)
|
|
2634
|
+
* @param point2 终点 (Cartesian3)
|
|
2635
|
+
* @returns 航向角(度,范围 [-180, 180])
|
|
2636
|
+
*/
|
|
2637
|
+
declare function calculateHeadingBetweenPoints(CesiumNS: typeof Cesium, point1: Cesium.Cartesian3, point2: Cesium.Cartesian3): number;
|
|
2638
|
+
|
|
2639
|
+
/**
|
|
2640
|
+
* 实时航点数据
|
|
2641
|
+
*/
|
|
2642
|
+
interface RealtimeWaypoint {
|
|
2643
|
+
longitude: number;
|
|
2644
|
+
latitude: number;
|
|
2645
|
+
altitude: number;
|
|
2646
|
+
heading?: number;
|
|
2647
|
+
pitch?: number;
|
|
2648
|
+
roll?: number;
|
|
2649
|
+
timestamp?: number;
|
|
2650
|
+
}
|
|
2651
|
+
/**
|
|
2652
|
+
* 轨迹样式选项
|
|
2653
|
+
*/
|
|
2654
|
+
interface TrackStyleOptions {
|
|
2655
|
+
/** 轨迹颜色 */
|
|
2656
|
+
color?: Cesium.Color;
|
|
2657
|
+
/** 轨迹线宽 */
|
|
2658
|
+
width?: number;
|
|
2659
|
+
/** 是否贴地 */
|
|
2660
|
+
clampToGround?: boolean;
|
|
2661
|
+
/** 最大轨迹点数(防止内存溢出),默认 1000 */
|
|
2662
|
+
maxPoints?: number;
|
|
2663
|
+
}
|
|
2664
|
+
/**
|
|
2665
|
+
* 实时飞行追踪器选项
|
|
2666
|
+
*/
|
|
2667
|
+
interface RealtimeFlightTrackerOptions {
|
|
2668
|
+
/** 是否显示飞过的轨迹,默认 true */
|
|
2669
|
+
showTrack?: boolean;
|
|
2670
|
+
/** 轨迹样式 */
|
|
2671
|
+
trackStyle?: TrackStyleOptions;
|
|
2672
|
+
/** 视锥体角度,默认 50 */
|
|
2673
|
+
fovDeg?: number;
|
|
2674
|
+
/** 自定义图层 */
|
|
2675
|
+
layer?: Cesium.CustomDataSource;
|
|
2676
|
+
}
|
|
2677
|
+
/**
|
|
2678
|
+
* 实时飞行追踪器
|
|
2679
|
+
*
|
|
2680
|
+
* 用于接收 WebSocket 推送的实时航点数据,更新飞机位置并绘制飞过的轨迹
|
|
2681
|
+
*/
|
|
2682
|
+
declare class RealtimeFlightTracker {
|
|
2683
|
+
private CesiumNS;
|
|
2684
|
+
private viewer;
|
|
2685
|
+
private options;
|
|
2686
|
+
private airplaneCursor?;
|
|
2687
|
+
private trackEntity?;
|
|
2688
|
+
private trackPositions;
|
|
2689
|
+
private isInitialized;
|
|
2690
|
+
constructor(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, options?: RealtimeFlightTrackerOptions);
|
|
2691
|
+
/**
|
|
2692
|
+
* 更新飞机位置(接收新航点)
|
|
2693
|
+
* @param waypoint 实时航点数据
|
|
2694
|
+
*/
|
|
2695
|
+
updatePosition(waypoint: RealtimeWaypoint): void;
|
|
2696
|
+
/**
|
|
2697
|
+
* 初始化飞机和轨迹实体
|
|
2698
|
+
*/
|
|
2699
|
+
private initialize;
|
|
2700
|
+
/**
|
|
2701
|
+
* 创建轨迹实体
|
|
2702
|
+
*/
|
|
2703
|
+
private createTrackEntity;
|
|
2704
|
+
/**
|
|
2705
|
+
* 添加轨迹点
|
|
2706
|
+
*/
|
|
2707
|
+
private addTrackPoint;
|
|
2708
|
+
/**
|
|
2709
|
+
* 清除轨迹
|
|
2710
|
+
*/
|
|
2711
|
+
clearTrack(): void;
|
|
2712
|
+
/**
|
|
2713
|
+
* 获取当前轨迹点数
|
|
2714
|
+
*/
|
|
2715
|
+
getTrackPointCount(): number;
|
|
2716
|
+
/**
|
|
2717
|
+
* 设置轨迹可见性
|
|
2718
|
+
*/
|
|
2719
|
+
setTrackVisible(visible: boolean): void;
|
|
2720
|
+
/**
|
|
2721
|
+
* 飞到当前飞机位置
|
|
2722
|
+
*/
|
|
2723
|
+
flyToAirplane(options?: {
|
|
2724
|
+
height?: number;
|
|
2725
|
+
duration?: number;
|
|
2726
|
+
}): void;
|
|
2727
|
+
/**
|
|
2728
|
+
* 销毁并清理资源
|
|
2729
|
+
*/
|
|
2730
|
+
destroy(): void;
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2598
2733
|
/**
|
|
2599
2734
|
* Path 编辑保存结果数据接口
|
|
2600
2735
|
* 对应 pathEditing.ts 中 saveAndStop() 返回的数据结构
|
|
@@ -2617,6 +2752,8 @@ interface PathEditingSaveResult {
|
|
|
2617
2752
|
relativeHeight?: number;
|
|
2618
2753
|
/** 🆕 是否使用全局默认高度(true: 高度=defaultAltitude, false: 高度=实际计算值) */
|
|
2619
2754
|
useGlobalHeight?: boolean;
|
|
2755
|
+
/** 🆕 航点ID(原有航点保留ID,新插入航点为 undefined) */
|
|
2756
|
+
waypointId?: string | number;
|
|
2620
2757
|
}>;
|
|
2621
2758
|
altitudeMode?: string;
|
|
2622
2759
|
/** 航线默认高度(米) */
|
|
@@ -2821,4 +2958,4 @@ declare const placeholder: {
|
|
|
2821
2958
|
};
|
|
2822
2959
|
declare const droneModelUrl: string;
|
|
2823
2960
|
|
|
2824
|
-
export { type AltitudeMode, CZMLManager, type CameraDestinationInput, CameraEventBus, type CameraFOVChangeEvent, CameraFOVController, type CameraFlyOptions, type CameraInitOptions, CameraManager, type CameraOrientation, type CameraPoseChangeEvent, type CameraSetViewOptions, type CameraView, type CaptureWithViewOptions, 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 FlyToBoundsOptions, type FlyToOptions, FrustumPyramid, type FrustumPyramidOptions, type FrustumShapeChangeEvent, type GeoBounds, type GeoPoint, type ImageryOptions, type ImageryProviderKind, type InitOptions, type LayerEvents, type LayerHandle, LayerManager, type LayerType, type Listener, type LoadMapLayersResult, type LoadSliceJsonOptions, type LoadSliceJsonResult, type LonLatHeight, type MapLayerConfig, 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 ScreenshotOptions, type ScreenshotResult, type SegmentSafetyResult, type SelectionChange, type SelectionResult, type SelectionSession, Selector, type ShapeLineProps, type ShapePointProps, type ShapePolygonProps, type SinoflyAdapterOptions, type SinoflyWaylineData, type SinoflyWaypointInfo, type SliceJsonData, StateManager, type TerrainKind, type TerrainOptions, type Toggle2D3DContext, type Toggle2D3DOptions, type VersionInfo, assertCesiumAssetsConfigured, calculateAbsoluteHeight, calculateBoundsDiagonal, calculateGeoBounds, calculateRelativeHeight, configureCesiumAssets, configureCesiumIonToken, convertPathToSinofly, convertSinoflyWayline, convertSinoflyWaylines, droneModelUrl, ensureCesiumIonToken, expandBounds, getCesiumBaseUrl, getCesiumIonToken, globalCameraEventBus, globalState, isPointInBounds, mergeBounds, placeholder, queryTerrainHeightAsync, queryTerrainHeightByLonLat, queryTerrainHeightByLonLatSync, queryTerrainHeightSync, queryTerrainHeights, queryTerrainHeightsByLonLat, renderFlightPath, renderFlightPathPreview, toggle2D3D, version, versionInfo };
|
|
2961
|
+
export { type AltitudeMode, CZMLManager, type CameraDestinationInput, CameraEventBus, type CameraFOVChangeEvent, CameraFOVController, type CameraFlyOptions, type CameraInitOptions, CameraManager, type CameraOrientation, type CameraPoseChangeEvent, type CameraSetViewOptions, type CameraView, type CaptureWithViewOptions, 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 FlyToBoundsOptions, type FlyToOptions, FrustumPyramid, type FrustumPyramidOptions, type FrustumShapeChangeEvent, type GeoBounds, type GeoPoint, type ImageryOptions, type ImageryProviderKind, type InitOptions, type LayerEvents, type LayerHandle, LayerManager, type LayerType, type Listener, type LoadMapLayersResult, type LoadSliceJsonOptions, type LoadSliceJsonResult, type LonLatHeight, type MapLayerConfig, 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, RealtimeFlightTracker, type RealtimeFlightTrackerOptions, type RealtimeWaypoint, type RenderFlightPathOptions, type RenderFlightPathPreviewOptions, SceneManager, type SceneOptions, type ScreenshotOptions, type ScreenshotResult, type SegmentSafetyResult, type SelectionChange, type SelectionResult, type SelectionSession, Selector, type ShapeLineProps, type ShapePointProps, type ShapePolygonProps, type SinoflyAdapterOptions, type SinoflyWaylineData, type SinoflyWaypointInfo, type SliceJsonData, StateManager, type TerrainKind, type TerrainOptions, type Toggle2D3DContext, type Toggle2D3DOptions, type TrackStyleOptions, type VersionInfo, assertCesiumAssetsConfigured, calculateAbsoluteHeight, calculateBoundsDiagonal, calculateDistance, calculateDistanceAndMidpoint, calculateGeoBounds, calculateHeadingBetweenPoints, calculateMidpoint, calculateRelativeHeight, configureCesiumAssets, configureCesiumIonToken, convertPathToSinofly, convertSinoflyWayline, convertSinoflyWaylines, droneModelUrl, ensureCesiumIonToken, expandBounds, getCesiumBaseUrl, getCesiumIonToken, globalCameraEventBus, globalState, isPointInBounds, mergeBounds, placeholder, queryTerrainHeightAsync, queryTerrainHeightByLonLat, queryTerrainHeightByLonLatSync, queryTerrainHeightSync, queryTerrainHeights, queryTerrainHeightsByLonLat, renderFlightPath, renderFlightPathPreview, toggle2D3D, version, versionInfo };
|