@jorgmoritz/gis-manager 0.1.41 → 0.1.43
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 +740 -37
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +354 -8
- package/dist/index.d.ts +354 -8
- package/dist/index.js +733 -38
- package/dist/index.js.map +1 -1
- package/dist/vue/index.cjs +647 -36
- package/dist/vue/index.cjs.map +1 -1
- package/dist/vue/index.js +647 -36
- package/dist/vue/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -209,6 +209,81 @@ interface PhotoBillboardResult {
|
|
|
209
209
|
added: number;
|
|
210
210
|
total: number;
|
|
211
211
|
}
|
|
212
|
+
/**
|
|
213
|
+
* 地图图层配置(从字典加载)
|
|
214
|
+
*/
|
|
215
|
+
interface MapLayerConfig {
|
|
216
|
+
/** 正射影像 URL */
|
|
217
|
+
imgUrl?: string;
|
|
218
|
+
/** 中文注记 URL */
|
|
219
|
+
ciaUrl?: string;
|
|
220
|
+
/** 地形数据 URL */
|
|
221
|
+
terrUrl?: string;
|
|
222
|
+
}
|
|
223
|
+
/**
|
|
224
|
+
* 从字典加载地图图层的结果
|
|
225
|
+
*/
|
|
226
|
+
interface LoadMapLayersResult {
|
|
227
|
+
/** 正射影像图层 */
|
|
228
|
+
imageryLayer?: Cesium.ImageryLayer;
|
|
229
|
+
/** 中文注记图层 */
|
|
230
|
+
annotationLayer?: Cesium.ImageryLayer;
|
|
231
|
+
/** 地形 Provider */
|
|
232
|
+
terrainProvider?: Cesium.TerrainProvider;
|
|
233
|
+
/** 加载状态 */
|
|
234
|
+
success: boolean;
|
|
235
|
+
/** 错误信息 */
|
|
236
|
+
errors: string[];
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* SliceJson 数据格式(TIF 切片配置)
|
|
240
|
+
*/
|
|
241
|
+
interface SliceJsonData {
|
|
242
|
+
/** 数据类型:dom(正射影像)或 terrain(地形) */
|
|
243
|
+
type: 'dom' | 'terrain';
|
|
244
|
+
/** 切片服务根 URL */
|
|
245
|
+
urlroot: string;
|
|
246
|
+
/** 范围 [west, south, east, north] */
|
|
247
|
+
bounds?: [number, number, number, number];
|
|
248
|
+
/** 中心点 [lon, lat, height?] */
|
|
249
|
+
center?: [number, number, number?];
|
|
250
|
+
/** 最小缩放级别 */
|
|
251
|
+
minZoom?: number;
|
|
252
|
+
/** 最大缩放级别 */
|
|
253
|
+
maxZoom?: number;
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* 加载 SliceJson 的选项
|
|
257
|
+
*/
|
|
258
|
+
interface LoadSliceJsonOptions {
|
|
259
|
+
/** 图层 ID(用于后续管理) */
|
|
260
|
+
layerId?: string;
|
|
261
|
+
/** 是否飞行到目标位置,默认 true */
|
|
262
|
+
flyTo?: boolean;
|
|
263
|
+
/** 飞行时长(秒),默认 2 */
|
|
264
|
+
flyDuration?: number;
|
|
265
|
+
/** 影像透明度,默认 1 */
|
|
266
|
+
opacity?: number;
|
|
267
|
+
}
|
|
268
|
+
/**
|
|
269
|
+
* 加载 SliceJson 的结果
|
|
270
|
+
*/
|
|
271
|
+
interface LoadSliceJsonResult {
|
|
272
|
+
/** 是否成功 */
|
|
273
|
+
success: boolean;
|
|
274
|
+
/** 数据类型 */
|
|
275
|
+
type: 'dom' | 'terrain';
|
|
276
|
+
/** 图层句柄(仅 DOM 类型) */
|
|
277
|
+
handle?: LayerHandle;
|
|
278
|
+
/** 影像图层(仅 DOM 类型) */
|
|
279
|
+
imageryLayer?: Cesium.ImageryLayer;
|
|
280
|
+
/** 地形 Provider(仅 terrain 类型) */
|
|
281
|
+
terrainProvider?: Cesium.TerrainProvider;
|
|
282
|
+
/** 原始数据 */
|
|
283
|
+
data: SliceJsonData;
|
|
284
|
+
/** 错误信息 */
|
|
285
|
+
error?: string;
|
|
286
|
+
}
|
|
212
287
|
declare class LayerManager {
|
|
213
288
|
private CesiumNS;
|
|
214
289
|
private viewer;
|
|
@@ -234,6 +309,45 @@ declare class LayerManager {
|
|
|
234
309
|
private createTerrain;
|
|
235
310
|
getImageryLayer(id: string): Cesium.ImageryLayer | undefined;
|
|
236
311
|
getTileset(id: string): Cesium.Cesium3DTileset | undefined;
|
|
312
|
+
/**
|
|
313
|
+
* 从配置加载地图图层(正射影像、中文注记、地形)
|
|
314
|
+
* @param config 地图图层配置
|
|
315
|
+
* @param options 可选配置
|
|
316
|
+
* @returns 加载结果
|
|
317
|
+
*/
|
|
318
|
+
loadMapLayersFromConfig(config: MapLayerConfig, options?: {
|
|
319
|
+
/** 天地图 Token(用于 WMTS 格式时的默认值) */
|
|
320
|
+
tiandituToken?: string;
|
|
321
|
+
/** 子域名列表 */
|
|
322
|
+
subdomains?: string[];
|
|
323
|
+
/** 最大缩放级别 */
|
|
324
|
+
maximumLevel?: number;
|
|
325
|
+
}): Promise<LoadMapLayersResult>;
|
|
326
|
+
/**
|
|
327
|
+
* 根据 URL 格式自动创建合适的 ImageryProvider
|
|
328
|
+
* @param url 影像 URL
|
|
329
|
+
* @param options 配置选项
|
|
330
|
+
*/
|
|
331
|
+
private createImageryProviderFromUrl;
|
|
332
|
+
/**
|
|
333
|
+
* 从 SliceJson 配置加载 TIF 切片数据(DOM 正射影像或 Terrain 地形)
|
|
334
|
+
* @param sliceJsonData JSON 字符串或已解析的对象
|
|
335
|
+
* @param options 加载选项
|
|
336
|
+
* @returns 加载结果
|
|
337
|
+
*/
|
|
338
|
+
loadFromSliceJson(sliceJsonData: string | SliceJsonData, options?: LoadSliceJsonOptions): Promise<LoadSliceJsonResult>;
|
|
339
|
+
/**
|
|
340
|
+
* 加载 DOM 正射影像
|
|
341
|
+
*/
|
|
342
|
+
private loadDomFromSliceJson;
|
|
343
|
+
/**
|
|
344
|
+
* 加载 Terrain 地形数据
|
|
345
|
+
*/
|
|
346
|
+
private loadTerrainFromSliceJson;
|
|
347
|
+
/**
|
|
348
|
+
* 飞行到 SliceJson 数据的目标位置
|
|
349
|
+
*/
|
|
350
|
+
private flyToSliceJsonTarget;
|
|
237
351
|
}
|
|
238
352
|
|
|
239
353
|
type Toggle2D3DOptions = {
|
|
@@ -261,6 +375,94 @@ interface Toggle2D3DContext {
|
|
|
261
375
|
*/
|
|
262
376
|
declare function toggle2D3D(ctx: Toggle2D3DContext, options?: Toggle2D3DOptions): void;
|
|
263
377
|
|
|
378
|
+
/**
|
|
379
|
+
* 地理边界计算工具
|
|
380
|
+
* 提供航点/坐标集合的边界框计算功能
|
|
381
|
+
*/
|
|
382
|
+
/**
|
|
383
|
+
* 地理坐标点
|
|
384
|
+
*/
|
|
385
|
+
interface GeoPoint {
|
|
386
|
+
/** 经度(度) */
|
|
387
|
+
lon: number;
|
|
388
|
+
/** 纬度(度) */
|
|
389
|
+
lat: number;
|
|
390
|
+
/** 高度(米,可选) */
|
|
391
|
+
alt?: number;
|
|
392
|
+
}
|
|
393
|
+
/**
|
|
394
|
+
* 地理边界框
|
|
395
|
+
*/
|
|
396
|
+
interface GeoBounds {
|
|
397
|
+
/** 西边界(最小经度) */
|
|
398
|
+
west: number;
|
|
399
|
+
/** 东边界(最大经度) */
|
|
400
|
+
east: number;
|
|
401
|
+
/** 南边界(最小纬度) */
|
|
402
|
+
south: number;
|
|
403
|
+
/** 北边界(最大纬度) */
|
|
404
|
+
north: number;
|
|
405
|
+
/** 中心经度 */
|
|
406
|
+
centerLon: number;
|
|
407
|
+
/** 中心纬度 */
|
|
408
|
+
centerLat: number;
|
|
409
|
+
/** 经度跨度(度) */
|
|
410
|
+
width: number;
|
|
411
|
+
/** 纬度跨度(度) */
|
|
412
|
+
height: number;
|
|
413
|
+
/** 最小高度(如果有高度数据) */
|
|
414
|
+
minAlt?: number;
|
|
415
|
+
/** 最大高度(如果有高度数据) */
|
|
416
|
+
maxAlt?: number;
|
|
417
|
+
}
|
|
418
|
+
/**
|
|
419
|
+
* 计算坐标点集合的地理边界框
|
|
420
|
+
* @param points 坐标点数组
|
|
421
|
+
* @returns 边界框,如果输入为空则返回 null
|
|
422
|
+
*
|
|
423
|
+
* @example
|
|
424
|
+
* ```typescript
|
|
425
|
+
* const waypoints = [
|
|
426
|
+
* { lon: 104.0, lat: 30.5 },
|
|
427
|
+
* { lon: 104.1, lat: 30.6 },
|
|
428
|
+
* { lon: 104.05, lat: 30.55 },
|
|
429
|
+
* ];
|
|
430
|
+
* const bounds = calculateGeoBounds(waypoints);
|
|
431
|
+
* // bounds = { west: 104.0, east: 104.1, south: 30.5, north: 30.6, ... }
|
|
432
|
+
* ```
|
|
433
|
+
*/
|
|
434
|
+
declare function calculateGeoBounds(points: Array<GeoPoint | {
|
|
435
|
+
lon: number;
|
|
436
|
+
lat: number;
|
|
437
|
+
alt?: number;
|
|
438
|
+
}>): GeoBounds | null;
|
|
439
|
+
/**
|
|
440
|
+
* 计算边界框的对角线距离(米)
|
|
441
|
+
* @param bounds 边界框
|
|
442
|
+
* @returns 对角线距离(米)
|
|
443
|
+
*/
|
|
444
|
+
declare function calculateBoundsDiagonal(bounds: GeoBounds): number;
|
|
445
|
+
/**
|
|
446
|
+
* 扩展边界框(添加 padding)
|
|
447
|
+
* @param bounds 原始边界框
|
|
448
|
+
* @param padding padding 比例(0-1),默认 0.1 表示 10%
|
|
449
|
+
* @returns 扩展后的边界框
|
|
450
|
+
*/
|
|
451
|
+
declare function expandBounds(bounds: GeoBounds, padding?: number): GeoBounds;
|
|
452
|
+
/**
|
|
453
|
+
* 检查点是否在边界框内
|
|
454
|
+
* @param point 坐标点
|
|
455
|
+
* @param bounds 边界框
|
|
456
|
+
* @returns 是否在边界框内
|
|
457
|
+
*/
|
|
458
|
+
declare function isPointInBounds(point: GeoPoint, bounds: GeoBounds): boolean;
|
|
459
|
+
/**
|
|
460
|
+
* 合并多个边界框
|
|
461
|
+
* @param boundsArray 边界框数组
|
|
462
|
+
* @returns 合并后的边界框
|
|
463
|
+
*/
|
|
464
|
+
declare function mergeBounds(boundsArray: GeoBounds[]): GeoBounds | null;
|
|
465
|
+
|
|
264
466
|
interface FlyToOptions {
|
|
265
467
|
duration?: number;
|
|
266
468
|
}
|
|
@@ -268,6 +470,56 @@ interface PathOptions {
|
|
|
268
470
|
speed?: number;
|
|
269
471
|
loop?: boolean;
|
|
270
472
|
}
|
|
473
|
+
/**
|
|
474
|
+
* 截图选项
|
|
475
|
+
*/
|
|
476
|
+
interface ScreenshotOptions {
|
|
477
|
+
/** 图片格式,默认 'image/png' */
|
|
478
|
+
format?: 'image/png' | 'image/jpeg' | 'image/webp';
|
|
479
|
+
/** JPEG/WebP 质量 (0-1),默认 0.92 */
|
|
480
|
+
quality?: number;
|
|
481
|
+
/** 生成的文件名,默认 'screenshot_时间戳.png' */
|
|
482
|
+
fileName?: string;
|
|
483
|
+
}
|
|
484
|
+
/**
|
|
485
|
+
* 截图结果
|
|
486
|
+
*/
|
|
487
|
+
interface ScreenshotResult {
|
|
488
|
+
/** Base64 格式的图片数据 */
|
|
489
|
+
dataUrl: string;
|
|
490
|
+
/** Blob 对象 */
|
|
491
|
+
blob: Blob;
|
|
492
|
+
/** File 对象 */
|
|
493
|
+
file: File;
|
|
494
|
+
}
|
|
495
|
+
/**
|
|
496
|
+
* 带视角调整的截图选项
|
|
497
|
+
*/
|
|
498
|
+
interface CaptureWithViewOptions extends ScreenshotOptions {
|
|
499
|
+
/** 航点列表,用于计算航线范围 */
|
|
500
|
+
waypoints?: GeoPoint[];
|
|
501
|
+
/** 是否使用垂直俯视角度,默认 true */
|
|
502
|
+
topDown?: boolean;
|
|
503
|
+
/** 边距比例(0-1),默认 0.3 */
|
|
504
|
+
padding?: number;
|
|
505
|
+
/** 是否恢复原始相机位置,默认 true */
|
|
506
|
+
restoreCamera?: boolean;
|
|
507
|
+
/** 等待渲染的时间(毫秒),默认 800 */
|
|
508
|
+
renderDelay?: number;
|
|
509
|
+
}
|
|
510
|
+
/**
|
|
511
|
+
* 飞行到边界框的选项
|
|
512
|
+
*/
|
|
513
|
+
interface FlyToBoundsOptions {
|
|
514
|
+
/** 边距比例(0-1),默认 0.3 */
|
|
515
|
+
padding?: number;
|
|
516
|
+
/** 是否使用垂直俯视角度,默认 true */
|
|
517
|
+
topDown?: boolean;
|
|
518
|
+
/** 飞行动画时长(秒),默认 0(立即设置) */
|
|
519
|
+
duration?: number;
|
|
520
|
+
/** 额外高度系数,默认 1.05 */
|
|
521
|
+
heightMultiplier?: number;
|
|
522
|
+
}
|
|
271
523
|
declare class CameraManager {
|
|
272
524
|
private CesiumNS;
|
|
273
525
|
private viewer;
|
|
@@ -283,10 +535,6 @@ declare class CameraManager {
|
|
|
283
535
|
* Toggle between 2D and 3D scene modes while preserving and restoring a 3D orientation.
|
|
284
536
|
*/
|
|
285
537
|
toggle2D3D(options?: Toggle2D3DOptions): void;
|
|
286
|
-
/**
|
|
287
|
-
* @deprecated Use toggle2D3D instead.
|
|
288
|
-
*/
|
|
289
|
-
toggleBirdsEye3D(options?: Toggle2D3DOptions): void;
|
|
290
538
|
/**
|
|
291
539
|
* 切换鸟瞰视角(垂直俯视)
|
|
292
540
|
* 在当前3D场景中切换到垂直向下的俯视角度,并可选择使用正交投影
|
|
@@ -346,8 +594,6 @@ declare class CameraManager {
|
|
|
346
594
|
*/
|
|
347
595
|
isBirdsEyeView(): boolean;
|
|
348
596
|
setView(view: CameraView): void;
|
|
349
|
-
moveToChengdu(): void;
|
|
350
|
-
isitwork(): void;
|
|
351
597
|
setViewEasy(args: {
|
|
352
598
|
destination: CameraDestinationInput;
|
|
353
599
|
orientation?: CameraOrientation;
|
|
@@ -379,6 +625,78 @@ declare class CameraManager {
|
|
|
379
625
|
* @returns
|
|
380
626
|
*/
|
|
381
627
|
private flyToAsync;
|
|
628
|
+
/**
|
|
629
|
+
* 飞行到边界框位置(用于截图)
|
|
630
|
+
* 根据航点计算边界框,并将相机移动到合适位置以覆盖整个区域
|
|
631
|
+
*
|
|
632
|
+
* @param waypoints 航点数组
|
|
633
|
+
* @param options 配置选项
|
|
634
|
+
* @returns 计算出的相机高度
|
|
635
|
+
*
|
|
636
|
+
* @example
|
|
637
|
+
* ```typescript
|
|
638
|
+
* const waypoints = [
|
|
639
|
+
* { lon: 104.0, lat: 30.5 },
|
|
640
|
+
* { lon: 104.1, lat: 30.6 },
|
|
641
|
+
* ];
|
|
642
|
+
* await cameraManager.flyToBoundsForScreenshot(waypoints, { topDown: true });
|
|
643
|
+
* ```
|
|
644
|
+
*/
|
|
645
|
+
flyToBoundsForScreenshot(waypoints: GeoPoint[], options?: FlyToBoundsOptions): number | null;
|
|
646
|
+
/**
|
|
647
|
+
* 对当前 Cesium 场景进行截图
|
|
648
|
+
*
|
|
649
|
+
* @param options 截图选项
|
|
650
|
+
* @returns 截图结果,包含 dataUrl、blob、file
|
|
651
|
+
*
|
|
652
|
+
* @example
|
|
653
|
+
* ```typescript
|
|
654
|
+
* const result = cameraManager.captureScreenshot();
|
|
655
|
+
* console.log(result.dataUrl); // base64 图片
|
|
656
|
+
* ```
|
|
657
|
+
*/
|
|
658
|
+
captureScreenshot(options?: ScreenshotOptions): ScreenshotResult;
|
|
659
|
+
/**
|
|
660
|
+
* 调整视角并截图(异步)
|
|
661
|
+
* 根据航点自动调整相机位置,等待渲染完成后截图
|
|
662
|
+
*
|
|
663
|
+
* @param options 截图选项
|
|
664
|
+
* @returns 截图结果
|
|
665
|
+
*
|
|
666
|
+
* @example
|
|
667
|
+
* ```typescript
|
|
668
|
+
* const waypoints = [
|
|
669
|
+
* { lon: 104.0, lat: 30.5 },
|
|
670
|
+
* { lon: 104.1, lat: 30.6 },
|
|
671
|
+
* ];
|
|
672
|
+
* const result = await cameraManager.captureScreenshotWithView({
|
|
673
|
+
* waypoints,
|
|
674
|
+
* topDown: true,
|
|
675
|
+
* padding: 0.3,
|
|
676
|
+
* });
|
|
677
|
+
* ```
|
|
678
|
+
*/
|
|
679
|
+
captureScreenshotWithView(options?: CaptureWithViewOptions): Promise<ScreenshotResult>;
|
|
680
|
+
/**
|
|
681
|
+
* 等待渲染完成后截图
|
|
682
|
+
*/
|
|
683
|
+
private captureAfterRender;
|
|
684
|
+
/**
|
|
685
|
+
* 将 Base64 DataURL 转换为 Blob
|
|
686
|
+
*/
|
|
687
|
+
private dataURLtoBlob;
|
|
688
|
+
/**
|
|
689
|
+
* 生成截图文件名
|
|
690
|
+
*/
|
|
691
|
+
private generateScreenshotFileName;
|
|
692
|
+
/**
|
|
693
|
+
* 延迟工具函数
|
|
694
|
+
*/
|
|
695
|
+
private delay;
|
|
696
|
+
/**
|
|
697
|
+
* 等待下一个动画帧
|
|
698
|
+
*/
|
|
699
|
+
private waitForAnimationFrame;
|
|
382
700
|
}
|
|
383
701
|
|
|
384
702
|
interface SceneOptions {
|
|
@@ -2230,8 +2548,36 @@ declare function queryTerrainHeightSync(CesiumNS: typeof Cesium, viewer: Cesium.
|
|
|
2230
2548
|
*/
|
|
2231
2549
|
declare function queryTerrainHeightAsync(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, position: Cesium.Cartesian3): Promise<number>;
|
|
2232
2550
|
/**
|
|
2233
|
-
*
|
|
2551
|
+
* 根据经纬度查询地形高度(异步)
|
|
2552
|
+
* @param CesiumNS Cesium 命名空间
|
|
2553
|
+
* @param viewer Cesium Viewer 实例
|
|
2554
|
+
* @param lon 经度(度)
|
|
2555
|
+
* @param lat 纬度(度)
|
|
2556
|
+
* @returns 地形高度
|
|
2557
|
+
*/
|
|
2558
|
+
declare function queryTerrainHeightByLonLat(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, lon: number, lat: number): Promise<number>;
|
|
2559
|
+
/**
|
|
2560
|
+
* 根据经纬度批量查询地形高度(异步)
|
|
2234
2561
|
* @param CesiumNS Cesium 命名空间
|
|
2562
|
+
* @param viewer Cesium Viewer 实例
|
|
2563
|
+
* @param coordinates 经纬度数组,每个元素为 [lon, lat] 或 { lon, lat }
|
|
2564
|
+
* @returns 每个位置对应的地形高度数组
|
|
2565
|
+
*/
|
|
2566
|
+
declare function queryTerrainHeightsByLonLat(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, coordinates: Array<[number, number] | {
|
|
2567
|
+
lon: number;
|
|
2568
|
+
lat: number;
|
|
2569
|
+
}>): Promise<number[]>;
|
|
2570
|
+
/**
|
|
2571
|
+
* 根据经纬度同步查询地形高度
|
|
2572
|
+
* @param CesiumNS Cesium 命名空间
|
|
2573
|
+
* @param viewer Cesium Viewer 实例
|
|
2574
|
+
* @param lon 经度(度)
|
|
2575
|
+
* @param lat 纬度(度)
|
|
2576
|
+
* @returns 地形高度(无法获取时返回 0)
|
|
2577
|
+
*/
|
|
2578
|
+
declare function queryTerrainHeightByLonLatSync(CesiumNS: typeof Cesium, viewer: Cesium.Viewer, lon: number, lat: number): number;
|
|
2579
|
+
/**
|
|
2580
|
+
* 根据高度模式计算航点的绝对高度
|
|
2235
2581
|
* @param altitudeMode 高度模式
|
|
2236
2582
|
* @param defaultAltitude 默认高度(相对高度值)
|
|
2237
2583
|
* @param startPointAltitude 起飞点高度(用于 relativeToStart 模式)
|
|
@@ -2475,4 +2821,4 @@ declare const placeholder: {
|
|
|
2475
2821
|
};
|
|
2476
2822
|
declare const droneModelUrl: string;
|
|
2477
2823
|
|
|
2478
|
-
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, droneModelUrl, ensureCesiumIonToken, getCesiumBaseUrl, getCesiumIonToken, globalCameraEventBus, globalState, placeholder, queryTerrainHeightAsync, queryTerrainHeightSync, queryTerrainHeights, renderFlightPath, renderFlightPathPreview, toggle2D3D, version, versionInfo };
|
|
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 };
|