ino-cesium 0.0.21 → 0.0.22-beta.1
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/assets/images/ground-clip/poly-soil.jpg +0 -0
- package/dist/assets/images/ground-clip/wall.jpg +0 -0
- package/dist/ino-cesium-full.js +23 -6
- package/dist/ino-cesium.d.ts +189 -61
- package/dist/ino-cesium.js +18 -1
- package/package.json +9 -9
- /package/dist/assets/{ground-skybox → images/ground-skybox}/nx.jpg +0 -0
- /package/dist/assets/{ground-skybox → images/ground-skybox}/ny.jpg +0 -0
- /package/dist/assets/{ground-skybox → images/ground-skybox}/nz.jpg +0 -0
- /package/dist/assets/{ground-skybox → images/ground-skybox}/px.jpg +0 -0
- /package/dist/assets/{ground-skybox → images/ground-skybox}/py.jpg +0 -0
- /package/dist/assets/{ground-skybox → images/ground-skybox}/pz.jpg +0 -0
package/dist/ino-cesium.d.ts
CHANGED
|
@@ -213,6 +213,11 @@ declare const initCesiumEvent: (viewer: Cesium.Viewer, eventListener: ICesiumEve
|
|
|
213
213
|
|
|
214
214
|
declare const numberId: () => string;
|
|
215
215
|
declare const getInoCesiumBaseUrl: () => any;
|
|
216
|
+
/**
|
|
217
|
+
* 延迟时间
|
|
218
|
+
* @param ms
|
|
219
|
+
*/
|
|
220
|
+
declare const delayTime: (ms: number) => Promise<unknown>;
|
|
216
221
|
|
|
217
222
|
declare class Tooltip {
|
|
218
223
|
static tooltip: Tooltip | null;
|
|
@@ -934,6 +939,10 @@ declare class CoordinateTransformer {
|
|
|
934
939
|
static wgs84ToBd09(point: CoordinatePoint): CoordinatePoint;
|
|
935
940
|
}
|
|
936
941
|
|
|
942
|
+
declare const pickPoint: (viewer: Cesium.Viewer) => Promise<unknown>;
|
|
943
|
+
declare const getFeaturesFromTileContent: (id: number, content: Cesium.Cesium3DTileContent) => any;
|
|
944
|
+
declare const getFeaturesFromTileFeature: (feature: Cesium.Cesium3DTileFeature) => any;
|
|
945
|
+
|
|
937
946
|
/**
|
|
938
947
|
*
|
|
939
948
|
* vec:矢量底图、cva:矢量标注、img:影像底图、cia:影像标注
|
|
@@ -1364,6 +1373,11 @@ interface IDrawAttrInfo {
|
|
|
1364
1373
|
* 测量结果数组
|
|
1365
1374
|
*/
|
|
1366
1375
|
measureResult?: IMeasureResult[];
|
|
1376
|
+
/**
|
|
1377
|
+
* 绘制样式
|
|
1378
|
+
*/
|
|
1379
|
+
style: DeepPartial<IDrawStyle>;
|
|
1380
|
+
__needUpdateAppearance?: boolean;
|
|
1367
1381
|
}
|
|
1368
1382
|
/**
|
|
1369
1383
|
* 事件动作类型
|
|
@@ -1416,10 +1430,21 @@ interface IDrawHandler {
|
|
|
1416
1430
|
*/
|
|
1417
1431
|
updateMeasureUnit: (drawData: IDrawAttrInfo, measureUnit: string[]) => void;
|
|
1418
1432
|
/**
|
|
1419
|
-
*
|
|
1433
|
+
* 设置全局绘制样式
|
|
1420
1434
|
* @param drawStyle 绘制样式
|
|
1421
1435
|
*/
|
|
1422
1436
|
setDrawStyle: (drawStyle: DeepPartial<IDrawStyle>) => void;
|
|
1437
|
+
/**
|
|
1438
|
+
* 设置绘制条目样式
|
|
1439
|
+
* @param drawStyle 绘制样式
|
|
1440
|
+
*/
|
|
1441
|
+
setDrawItemStyle: (drawData: IDrawAttrInfo, drawStyle: DeepPartial<IDrawStyle>) => void;
|
|
1442
|
+
/**
|
|
1443
|
+
* 设置贴地状态
|
|
1444
|
+
* @param drawData
|
|
1445
|
+
* @param clampToGround
|
|
1446
|
+
*/
|
|
1447
|
+
setClampToGround: (drawData: IDrawAttrInfo, clampToGround: boolean) => void;
|
|
1423
1448
|
/**
|
|
1424
1449
|
* 事件处理器
|
|
1425
1450
|
*/
|
|
@@ -1472,7 +1497,7 @@ interface IDrawOptions {
|
|
|
1472
1497
|
/**
|
|
1473
1498
|
* 绘制样式
|
|
1474
1499
|
*/
|
|
1475
|
-
|
|
1500
|
+
style?: DeepPartial<IDrawStyle>;
|
|
1476
1501
|
}
|
|
1477
1502
|
interface IReShowOptions {
|
|
1478
1503
|
id: string;
|
|
@@ -1575,12 +1600,14 @@ interface IMeasureResult {
|
|
|
1575
1600
|
type DrawShape = 'polyline' | 'polyline-arrow' | 'polygon' | 'point' | 'circle' | 'rectangle' | 'vertical-line' | 'vertical-surface-line' | 'curve' | 'curve-arrow' | 'sector' | 'db-arrow' | string;
|
|
1576
1601
|
/**
|
|
1577
1602
|
* 绘制样式接口
|
|
1603
|
+
* todo 点图标,线样式,面贴图
|
|
1578
1604
|
*/
|
|
1579
1605
|
interface IDrawStyle {
|
|
1580
1606
|
/**
|
|
1581
1607
|
* 点样式
|
|
1582
1608
|
*/
|
|
1583
1609
|
point: {
|
|
1610
|
+
image: string;
|
|
1584
1611
|
/**
|
|
1585
1612
|
* 点颜色
|
|
1586
1613
|
*/
|
|
@@ -1589,6 +1616,8 @@ interface IDrawStyle {
|
|
|
1589
1616
|
* 点像素大小
|
|
1590
1617
|
*/
|
|
1591
1618
|
pixelSize: number;
|
|
1619
|
+
offsetX: number;
|
|
1620
|
+
offsetY: number;
|
|
1592
1621
|
/**
|
|
1593
1622
|
* 点轮廓颜色
|
|
1594
1623
|
*/
|
|
@@ -1618,11 +1647,13 @@ interface IDrawStyle {
|
|
|
1618
1647
|
* 深度失败颜色
|
|
1619
1648
|
*/
|
|
1620
1649
|
depthFailColor: string;
|
|
1650
|
+
type: 'solid' | 'dashed' | 'glow';
|
|
1621
1651
|
};
|
|
1622
1652
|
/**
|
|
1623
1653
|
* 多边形样式
|
|
1624
1654
|
*/
|
|
1625
1655
|
polygon: {
|
|
1656
|
+
image: string;
|
|
1626
1657
|
/**
|
|
1627
1658
|
* 多边形颜色
|
|
1628
1659
|
*/
|
|
@@ -2495,7 +2526,7 @@ declare class RadereScanPrimitive extends BasePrimitive<any> {
|
|
|
2495
2526
|
private options;
|
|
2496
2527
|
constructor(options: IRaderScanPrimitiveOptions);
|
|
2497
2528
|
getGeometry(): Cesium.CircleGeometry;
|
|
2498
|
-
getPrimitive(): Cesium.
|
|
2529
|
+
getPrimitive(): Cesium.Primitive | Cesium.GroundPrimitive | Cesium.PointPrimitiveCollection | Cesium.GroundPolylinePrimitive | Cesium.LabelCollection | Cesium.PrimitiveCollection | undefined;
|
|
2499
2530
|
setAppearance(appearance?: Cesium.Appearance): void;
|
|
2500
2531
|
}
|
|
2501
2532
|
|
|
@@ -2625,7 +2656,7 @@ declare class CircleAperturePrimitive extends BasePrimitive<any> {
|
|
|
2625
2656
|
private options;
|
|
2626
2657
|
constructor(options: ICircleAperturePrimitiveOptions);
|
|
2627
2658
|
getGeometry(): Cesium.CircleGeometry;
|
|
2628
|
-
getPrimitive(): Cesium.
|
|
2659
|
+
getPrimitive(): Cesium.Primitive | Cesium.GroundPrimitive | Cesium.PointPrimitiveCollection | Cesium.GroundPolylinePrimitive | Cesium.LabelCollection | Cesium.PrimitiveCollection | undefined;
|
|
2629
2660
|
setAppearance(appearance?: Cesium.Appearance): void;
|
|
2630
2661
|
}
|
|
2631
2662
|
|
|
@@ -2705,48 +2736,126 @@ interface IDivLabelHandler {
|
|
|
2705
2736
|
}
|
|
2706
2737
|
|
|
2707
2738
|
interface IBaseAnalysis<T, R> {
|
|
2708
|
-
set: (options: T) => R;
|
|
2739
|
+
set: (options: T) => R | any;
|
|
2709
2740
|
remove: (item: R) => void;
|
|
2710
2741
|
removeAll: () => void;
|
|
2711
2742
|
destroy: () => void;
|
|
2712
2743
|
}
|
|
2713
|
-
interface
|
|
2744
|
+
interface IGroundClip extends IBaseAnalysis<IGroundClipOptions, IGroundClipItem> {
|
|
2714
2745
|
}
|
|
2715
|
-
interface
|
|
2746
|
+
interface IGroundClipOptions {
|
|
2716
2747
|
positions: Cesium.Cartesian3[];
|
|
2748
|
+
/**
|
|
2749
|
+
* 边界插值点数量
|
|
2750
|
+
*/
|
|
2751
|
+
interCount?: number;
|
|
2752
|
+
/**
|
|
2753
|
+
* 裁切深度
|
|
2754
|
+
*/
|
|
2717
2755
|
depth: number;
|
|
2718
|
-
unionClippingRegions?: boolean;
|
|
2719
2756
|
}
|
|
2720
|
-
interface
|
|
2757
|
+
interface IGroundClipItem {
|
|
2758
|
+
id: string;
|
|
2759
|
+
positions: Cesium.Cartesian3[];
|
|
2760
|
+
clipPolygon: Cesium.ClippingPolygon;
|
|
2761
|
+
clipEntity: Cesium.Entity;
|
|
2721
2762
|
}
|
|
2722
|
-
interface
|
|
2763
|
+
interface ITilesetClip extends IBaseAnalysis<ITilesetClipOptions, ITilesetClipItem> {
|
|
2764
|
+
/**
|
|
2765
|
+
* 设置裁切翻转
|
|
2766
|
+
* @param inverse
|
|
2767
|
+
*/
|
|
2768
|
+
setInverse: (inverse: boolean, item: ITilesetClipItem) => void;
|
|
2769
|
+
setInverseAll: (inverse: boolean) => void;
|
|
2770
|
+
}
|
|
2771
|
+
interface ITilesetClipOptions {
|
|
2723
2772
|
positions: Cesium.Cartesian3[];
|
|
2724
|
-
|
|
2725
|
-
|
|
2773
|
+
inverse: boolean;
|
|
2774
|
+
tileset: Cesium.Cesium3DTileset;
|
|
2726
2775
|
}
|
|
2727
|
-
interface
|
|
2776
|
+
interface ITilesetClipItem {
|
|
2728
2777
|
id: string;
|
|
2729
|
-
|
|
2730
|
-
|
|
2778
|
+
tileset: Cesium.Cesium3DTileset;
|
|
2779
|
+
clipPolygon?: Cesium.ClippingPolygon;
|
|
2731
2780
|
}
|
|
2732
|
-
interface
|
|
2781
|
+
interface IFillVolume extends IBaseAnalysis<IFillVolumeOptions, IFillVolumeItem> {
|
|
2782
|
+
changeBaseHeight: (item: IFillVolumeItem) => void;
|
|
2733
2783
|
}
|
|
2734
|
-
interface
|
|
2784
|
+
interface IFillVolumeOptions {
|
|
2735
2785
|
positions: Cesium.Cartesian3[];
|
|
2736
|
-
type: 'model' | 'terrain';
|
|
2737
|
-
speed: number;
|
|
2738
2786
|
}
|
|
2739
|
-
interface
|
|
2787
|
+
interface IFillVolumeItem {
|
|
2788
|
+
id: string;
|
|
2789
|
+
maxHeight: number;
|
|
2790
|
+
minHeight: number;
|
|
2791
|
+
baseHeight: number;
|
|
2792
|
+
digVolume: number;
|
|
2793
|
+
fillVolume: number;
|
|
2794
|
+
cellsize: number;
|
|
2795
|
+
positions: Cesium.Cartesian3[];
|
|
2796
|
+
heightPositions: Cesium.Cartesian3[];
|
|
2797
|
+
centroid: any;
|
|
2798
|
+
area: number;
|
|
2799
|
+
polygonPrimitive: Cesium.Primitive;
|
|
2800
|
+
linePrimitive: Cesium.PrimitiveCollection;
|
|
2801
|
+
labelPrimitive: Cesium.LabelCollection;
|
|
2802
|
+
vloumePrimitive: Cesium.PrimitiveCollection;
|
|
2803
|
+
volumeLabel: Cesium.Label;
|
|
2804
|
+
}
|
|
2805
|
+
interface ITilesExplode extends IBaseAnalysis<ITilesExplodeOptions, ITilesExplodeItem> {
|
|
2806
|
+
set: (options: ITilesExplodeOptions) => Promise<ITilesExplodeItem>;
|
|
2807
|
+
remove: (item: ITilesExplodeItem) => Promise<any>;
|
|
2808
|
+
changeHeight: (item: ITilesExplodeItem, height: number) => void;
|
|
2809
|
+
}
|
|
2810
|
+
interface ITilesExplodeOptions {
|
|
2811
|
+
tiles: Cesium.Cesium3DTile[];
|
|
2812
|
+
height: number;
|
|
2813
|
+
}
|
|
2814
|
+
interface ITilesExplodeItem {
|
|
2740
2815
|
id: string;
|
|
2741
|
-
|
|
2816
|
+
tiles: Cesium.Cesium3DTile[];
|
|
2817
|
+
/**
|
|
2818
|
+
* tiles对应的原始包围盒
|
|
2819
|
+
*/
|
|
2820
|
+
originBoundingSpheres: Cesium.BoundingSphere[];
|
|
2821
|
+
fromHeight: number;
|
|
2822
|
+
toHeight: number;
|
|
2742
2823
|
}
|
|
2743
|
-
interface
|
|
2824
|
+
interface ITilesProfile extends IBaseAnalysis<ITilesProfileOptions, ITilesProfileItem> {
|
|
2825
|
+
set: (options: ITilesProfileOptions) => Promise<ITilesProfileItem>;
|
|
2826
|
+
changeTipPoint: (profileData: ITilesProfileData) => void;
|
|
2744
2827
|
}
|
|
2745
|
-
interface
|
|
2828
|
+
interface ITilesProfileOptions {
|
|
2829
|
+
tileSetLoader: I3dTilesLoader;
|
|
2746
2830
|
positions: Cesium.Cartesian3[];
|
|
2831
|
+
/**
|
|
2832
|
+
* 插值点距离
|
|
2833
|
+
* 默认为20米一个点
|
|
2834
|
+
*/
|
|
2835
|
+
distance?: number;
|
|
2836
|
+
/**
|
|
2837
|
+
* 分析进度,回调当前分析的索引和对应tile
|
|
2838
|
+
* @param progress 当前分析的索引
|
|
2839
|
+
* @param tile 当前分析的tile
|
|
2840
|
+
*/
|
|
2841
|
+
progress?: (progress: number, tile: Cesium.Cesium3DTile) => void;
|
|
2842
|
+
}
|
|
2843
|
+
interface ITilesProfileData {
|
|
2844
|
+
height: number;
|
|
2845
|
+
distance: number;
|
|
2846
|
+
allDistance: number;
|
|
2847
|
+
positionIndex: number;
|
|
2848
|
+
position: Cesium.Cartesian3;
|
|
2849
|
+
}
|
|
2850
|
+
interface ITilesProfileResult {
|
|
2851
|
+
datas: ITilesProfileData[];
|
|
2852
|
+
name: string;
|
|
2853
|
+
index: number;
|
|
2747
2854
|
}
|
|
2748
|
-
interface
|
|
2855
|
+
interface ITilesProfileItem {
|
|
2749
2856
|
id: string;
|
|
2857
|
+
tiles: Cesium.Cesium3DTile[];
|
|
2858
|
+
results: ITilesProfileResult[];
|
|
2750
2859
|
}
|
|
2751
2860
|
interface IProFile<T> {
|
|
2752
2861
|
set: (options: T) => Promise<IProFileItem>;
|
|
@@ -2776,68 +2885,87 @@ interface IProFileItemData {
|
|
|
2776
2885
|
distance: number;
|
|
2777
2886
|
allDistance: number;
|
|
2778
2887
|
}
|
|
2779
|
-
interface
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2888
|
+
interface I3dTilesLoader {
|
|
2889
|
+
tileset: Cesium.Cesium3DTileset;
|
|
2890
|
+
heightOffset: number;
|
|
2891
|
+
remove: () => void;
|
|
2892
|
+
flyTo: () => void;
|
|
2893
|
+
flyToByFeatureId: (id: string) => Promise<boolean>;
|
|
2894
|
+
twinkingByFeatureId: (id: string) => void;
|
|
2895
|
+
twinkingByTileId: (id: string) => void;
|
|
2896
|
+
setHeightOffset: (heightOffsetValue: number) => void;
|
|
2897
|
+
setOpacity: (opactiy: number) => void;
|
|
2898
|
+
setScale: (scale: number) => void;
|
|
2899
|
+
setSplitDirection: (splitDirection: Cesium.SplitDirection) => void;
|
|
2900
|
+
setSelectByFeatureIds: (id?: string) => void;
|
|
2901
|
+
setSelectByTileIds: (id?: string) => void;
|
|
2902
|
+
setSelectColor: (color: string) => void;
|
|
2903
|
+
setBrightness: (brightness: number) => void;
|
|
2904
|
+
setVisible: (visible: boolean) => void;
|
|
2905
|
+
setVisibleByFeatureIds: (ids: string[], visible: boolean) => void;
|
|
2906
|
+
setVisibleByTileId: (ids: string[], visible: boolean) => void;
|
|
2907
|
+
getFeatures: () => any[];
|
|
2908
|
+
getFeaturesGroupByTileId: () => any;
|
|
2785
2909
|
}
|
|
2786
2910
|
|
|
2787
2911
|
type types_IBaseAnalysis<T, R> = IBaseAnalysis<T, R>;
|
|
2788
|
-
type
|
|
2789
|
-
type
|
|
2790
|
-
type
|
|
2791
|
-
type
|
|
2792
|
-
type
|
|
2793
|
-
type
|
|
2794
|
-
type types_IFillDigItem = IFillDigItem;
|
|
2795
|
-
type types_IFillDigOptions = IFillDigOptions;
|
|
2796
|
-
type types_IFlood = IFlood;
|
|
2797
|
-
type types_IFloodItem = IFloodItem;
|
|
2798
|
-
type types_IFloodOptions = IFloodOptions;
|
|
2799
|
-
type types_IModelProFileOptions = IModelProFileOptions;
|
|
2912
|
+
type types_IFillVolume = IFillVolume;
|
|
2913
|
+
type types_IFillVolumeItem = IFillVolumeItem;
|
|
2914
|
+
type types_IFillVolumeOptions = IFillVolumeOptions;
|
|
2915
|
+
type types_IGroundClip = IGroundClip;
|
|
2916
|
+
type types_IGroundClipItem = IGroundClipItem;
|
|
2917
|
+
type types_IGroundClipOptions = IGroundClipOptions;
|
|
2800
2918
|
type types_IProFile<T> = IProFile<T>;
|
|
2801
2919
|
type types_IProFileItem = IProFileItem;
|
|
2802
2920
|
type types_IProFileItemData = IProFileItemData;
|
|
2803
2921
|
type types_IProFileOptions = IProFileOptions;
|
|
2922
|
+
type types_ITilesExplode = ITilesExplode;
|
|
2923
|
+
type types_ITilesExplodeItem = ITilesExplodeItem;
|
|
2924
|
+
type types_ITilesExplodeOptions = ITilesExplodeOptions;
|
|
2925
|
+
type types_ITilesProfile = ITilesProfile;
|
|
2926
|
+
type types_ITilesProfileData = ITilesProfileData;
|
|
2927
|
+
type types_ITilesProfileItem = ITilesProfileItem;
|
|
2928
|
+
type types_ITilesProfileOptions = ITilesProfileOptions;
|
|
2929
|
+
type types_ITilesProfileResult = ITilesProfileResult;
|
|
2930
|
+
type types_ITilesetClip = ITilesetClip;
|
|
2931
|
+
type types_ITilesetClipItem = ITilesetClipItem;
|
|
2932
|
+
type types_ITilesetClipOptions = ITilesetClipOptions;
|
|
2804
2933
|
declare namespace types {
|
|
2805
|
-
export type { types_IBaseAnalysis as IBaseAnalysis,
|
|
2934
|
+
export type { types_IBaseAnalysis as IBaseAnalysis, types_IFillVolume as IFillVolume, types_IFillVolumeItem as IFillVolumeItem, types_IFillVolumeOptions as IFillVolumeOptions, types_IGroundClip as IGroundClip, types_IGroundClipItem as IGroundClipItem, types_IGroundClipOptions as IGroundClipOptions, types_IProFile as IProFile, types_IProFileItem as IProFileItem, types_IProFileItemData as IProFileItemData, types_IProFileOptions as IProFileOptions, types_ITilesExplode as ITilesExplode, types_ITilesExplodeItem as ITilesExplodeItem, types_ITilesExplodeOptions as ITilesExplodeOptions, types_ITilesProfile as ITilesProfile, types_ITilesProfileData as ITilesProfileData, types_ITilesProfileItem as ITilesProfileItem, types_ITilesProfileOptions as ITilesProfileOptions, types_ITilesProfileResult as ITilesProfileResult, types_ITilesetClip as ITilesetClip, types_ITilesetClipItem as ITilesetClipItem, types_ITilesetClipOptions as ITilesetClipOptions };
|
|
2806
2935
|
}
|
|
2807
2936
|
|
|
2808
2937
|
/**
|
|
2809
|
-
*
|
|
2938
|
+
* 填挖方分析
|
|
2810
2939
|
*/
|
|
2811
|
-
declare const
|
|
2940
|
+
declare const createFillVolumeHandler: (viewer: Cesium.Viewer) => IFillVolume;
|
|
2812
2941
|
|
|
2813
2942
|
/**
|
|
2814
|
-
*
|
|
2943
|
+
* 地形裁剪 , 地形开挖
|
|
2815
2944
|
*/
|
|
2816
|
-
declare const
|
|
2945
|
+
declare const createGroundClipHandler: (viewer: Cesium.Viewer) => IGroundClip;
|
|
2817
2946
|
|
|
2818
2947
|
/**
|
|
2819
|
-
*
|
|
2820
|
-
*
|
|
2948
|
+
* 3D 瓦片炸开
|
|
2949
|
+
* Cesium3DTile[]
|
|
2821
2950
|
*/
|
|
2822
|
-
declare const
|
|
2951
|
+
declare const createTilesExplodeHandler: (viewer: Cesium.Viewer) => ITilesExplode;
|
|
2823
2952
|
|
|
2824
2953
|
/**
|
|
2825
|
-
*
|
|
2826
|
-
*
|
|
2954
|
+
* 模型上剖面分析
|
|
2955
|
+
* 基于Cesium3DTile[]
|
|
2827
2956
|
*/
|
|
2828
|
-
declare const
|
|
2957
|
+
declare const createTilesProfileHandler: (viewer: Cesium.Viewer) => ITilesProfile;
|
|
2829
2958
|
|
|
2830
2959
|
/**
|
|
2831
|
-
*
|
|
2832
|
-
* @param viewer
|
|
2960
|
+
* 3dtiles 裁切
|
|
2833
2961
|
*/
|
|
2834
|
-
declare const
|
|
2962
|
+
declare const createTilesetClipHandler: (viewer: Cesium.Viewer) => ITilesetClip;
|
|
2835
2963
|
|
|
2836
2964
|
/**
|
|
2837
|
-
* 剖面分析
|
|
2838
|
-
*
|
|
2965
|
+
* 剖面分析
|
|
2966
|
+
* @param viewer
|
|
2839
2967
|
*/
|
|
2840
|
-
declare const
|
|
2968
|
+
declare const createProfileAnalysis: (viewer: Cesium.Viewer) => IProFile<IProFileOptions>;
|
|
2841
2969
|
|
|
2842
|
-
export { types as Analysis, BaseMaterialProperty, BasePrimitive, CircleApertureMaterialProperty, CircleAperturePrimitive, CircleRaderFanMaterialProperty, CircleRaderWaveMaterialProperty, CircleWaveMaterialProperty, types$4 as Common, CoordinateTransformer, DefaultViewerOptions, types$3 as Draw, DrawEventType, DrawStyle, EllipsoidElectricMaterialProperty, EllipsoidHScanMaterialProperty, EllipsoidVScanMaterialProperty, FlyAttitude, GridPrimitives, GroundPolygonPrimitives, GroundPolylinePrimitives, LightWallMaterialProperty, types$2 as Material, PointClusterPrimitives, PointPrimitives, PolylineFlowMaterialProperty, PolylineTrailMaterialProperty, Popup, types$1 as Primitives, RadereScanPrimitive, RoamStatus, Tooltip, TransformsFor3dtiles, ZapsMaterialProperty, addDrawActions, calcArea, calcBoundingSphereFromPositions, calcCameraHeightFromZoom, calcGeodesicDistance, calcGeodesicDistances, calcLerpPosition, calcPoistionCenter, calcSceneHeightFromPositions, calcSpaceDistance, calcSpaceDistances, calcTerrainHeightFromPositions, calcTriangleArea, calcZoomFromCameraHeight, clacPositionsForParabola, createBloomTargetStage, createBottomStatusBar, createCircleApertureMaterial, createCircleRaderFanMaterial, createCircleWaveMaterial,
|
|
2843
|
-
export type { DeepPartial, DrawEvent, DrawShape, IBaseAnalysis, IBillboard, ICamearView, ICesiumEventListener, ICircleApertureMaterialOptions, ICircleAperturePrimitiveOptions, ICircleRaderFanMaterialOptions, ICircleRaderWaveMaterialOptions, ICircleWaveMaterialOptions,
|
|
2970
|
+
export { types as Analysis, BaseMaterialProperty, BasePrimitive, CircleApertureMaterialProperty, CircleAperturePrimitive, CircleRaderFanMaterialProperty, CircleRaderWaveMaterialProperty, CircleWaveMaterialProperty, types$4 as Common, CoordinateTransformer, DefaultViewerOptions, types$3 as Draw, DrawEventType, DrawStyle, EllipsoidElectricMaterialProperty, EllipsoidHScanMaterialProperty, EllipsoidVScanMaterialProperty, FlyAttitude, GridPrimitives, GroundPolygonPrimitives, GroundPolylinePrimitives, LightWallMaterialProperty, types$2 as Material, PointClusterPrimitives, PointPrimitives, PolylineFlowMaterialProperty, PolylineTrailMaterialProperty, Popup, types$1 as Primitives, RadereScanPrimitive, RoamStatus, Tooltip, TransformsFor3dtiles, ZapsMaterialProperty, addDrawActions, calcArea, calcBoundingSphereFromPositions, calcCameraHeightFromZoom, calcGeodesicDistance, calcGeodesicDistances, calcLerpPosition, calcPoistionCenter, calcSceneHeightFromPositions, calcSpaceDistance, calcSpaceDistances, calcTerrainHeightFromPositions, calcTriangleArea, calcZoomFromCameraHeight, clacPositionsForParabola, createBloomTargetStage, createBottomStatusBar, createCircleApertureMaterial, createCircleRaderFanMaterial, createCircleWaveMaterial, createDivLabelHandler, createDrawHandler, createDroneAnimCustomShader, createEagleEye, createEllipsoidElectricMaterial, createEllipsoidHScanMaterial, createEllipsoidVScanMaterial, createFillVolumeHandler, createFogStage, createGroundClipHandler, createHeightFogStage, createHighLightStage, createLightBandCustomShader, createLightWallMaterial, createLightningStage, createOpenAnim, createOutLineEffect, createOutlineStage, createPoylineFlowMaterial, createProfileAnalysis, createRaderWaveMaterial, createRainCoverStage, createRainStage, createRoamHandler, createRollerShutterHandler, createScanRadarMaterial, createSkyBox, createSkyBoxOnGround, createSkylineStage, createSnowCoverStage, createSnowStage, createSplitScreenHandler, createTilesExplodeHandler, createTilesProfileHandler, createTilesetClipHandler, createTrailMaterial, createZapsMaterial, delayTime, flyByRotateOut, flyByRotatePoint, flyToCameraView, flyToCesium3DTile, flyToDataSource, flyToFromSphere, flyToImagery, flyToLnglat, flyToNorth, flyToPosition, flyToRectangleBounds, getAllFeaturesFrom3dTiles, getAllTilesFrom3dTiles, getCameraView, getCesiumForAutoFitScale, getFeaturesFromTileContent, getFeaturesFromTileFeature, getInoCesiumBaseUrl, getScreenCenterPoint, initCesium, initCesiumEvent, load3dTiles, loadI3s, loadModel, loadTerrain, loadTerrainFromCesium, loadTianDiTu, loads3m, makeGridFromElevationExtrema, makeGridToInstanceForBox, makeGridToInstanceForLine, makeLnglatToPosition, makeLnglatsToLineGeojson, makeLnglatsToPointGeojson, makeLnglatsToPolygonGeojson, makeLnglatsToPositions, makePositionsClose, makePositionsForAntiClockwise, makePositionsForClockwise, makePositionsToLnglats, makePositiontoLnglat, makeYawPitchRollToHeadingPitchRoll, mekeGridPolygonAndHeight, numberId, pickPoint, randomColor, randomPointToGeoJson, randomPolygonToGeoJson, randomPolylineToGeoJson, removeTerrain, setCameraAutoBackTiltToZero, setCesiumForAutoFitScale, setGlobeEnabled, setGlobeOpatity, setHeightOffsetFor3dTiles, setImageLayerTheme, setViewToLnglat, twinkleModel };
|
|
2971
|
+
export type { DeepPartial, DrawEvent, DrawShape, IBaseAnalysis, IBillboard, ICamearView, ICesiumEventListener, ICircleApertureMaterialOptions, ICircleAperturePrimitiveOptions, ICircleRaderFanMaterialOptions, ICircleRaderWaveMaterialOptions, ICircleWaveMaterialOptions, ICorridorMaterialOptions, IDivLabelHandler, IDivLabelItem, IDivLabelOptions, IDrawAttrInfo, IDrawEditEvent, IDrawHandler, IDrawHandlerEvent, IDrawOptions, IDrawStyle, IDroneAnimOptions, IEllipsoidElectricMaterialOptions, IEllipsoidHScanMaterialPropertyOptions, IEllipsoidVScanMaterialPropertyOptions, IEventActions, IEventData, IFillVolume, IFillVolumeItem, IFillVolumeOptions, IFogStageOptions, IGroundClip, IGroundClipItem, IGroundClipOptions, IGroundPolygonPrimitivesOptions, IGroundPolylinePrimitivesOptions, IHeightFogStageOptions, IHighLightStageOptions, ILabel, ILightBandStageOptions, ILightWallMaterialOptions, ILightningStageOptions, ILoadTerrainOptions, ILoadTiandituOptions, IMeasureOptions, IMeasureResult, IOpenAnimOptions, IPoint, IPointPrimitivesOptions, IPolylineFlowMaterialOptions, IPolylineTrailMaterialOptions, IProFile, IProFileItem, IProFileItemData, IProFileOptions, IRadarScanMaterialOptions, IRaderScanPrimitiveOptions, IRainCoverStage, IRainStageOptions, IReShowOptions, IRoamEvent, IRoamHandler, IRoamItem, IRoamItemHPR, IRoaming, ISetImageLayerOptions, ISetViewByLngLatOptions, ISetViewByPositionOptions, ISkyBoxOnGroundOptions, ISkyBoxOptions, ISkyBoxSources, ISnowCoverStageOptions, ISnowStageOptions, ITilesExplode, ITilesExplodeItem, ITilesExplodeOptions, ITilesProfile, ITilesProfileData, ITilesProfileItem, ITilesProfileOptions, ITilesProfileResult, ITilesetClip, ITilesetClipItem, ITilesetClipOptions, IYawPitchRoll, IZapsMaterialOptions, Icluster };
|