mars3d 3.4.26 → 3.5.0

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/mars3d.d.ts CHANGED
@@ -2,10 +2,10 @@
2
2
  /**
3
3
  * Mars3D三维可视化平台 mars3d
4
4
  *
5
- * 版本信息:v3.4.26
6
- * 编译日期:2023-03-09 16:18:03
5
+ * 版本信息:v3.5.0
6
+ * 编译日期:2023-03-17 08:58:39
7
7
  * 版权所有:Copyright by 火星科技 http://mars3d.cn
8
- * 使用单位:免费公开版 ,2022-06-01
8
+ * 使用单位:免费公开版 ,2022-10-01
9
9
  */
10
10
 
11
11
  import * as Cesium from "mars3d-cesium"
@@ -133,7 +133,6 @@ declare enum EffectType {
133
133
  inverted,
134
134
  mosaic,
135
135
  nightVision,
136
- outline,
137
136
  rain,
138
137
  snow,
139
138
  snowCover
@@ -570,7 +569,6 @@ declare enum GraphicType {
570
569
  polyline,
571
570
  curve,
572
571
  polylineP,
573
- polylineSP,
574
572
  polylineC,
575
573
  polylineVolume,
576
574
  polylineVolumeP,
@@ -1241,6 +1239,17 @@ declare namespace MaterialType {
1241
1239
  * @property [segment = 3.0] - 分段数
1242
1240
  */
1243
1241
  const DigitalFlow: string;
1242
+ /**
1243
+ * 线状: 三条平行虚线
1244
+ * @property [color = Cesium.Color.RED] - 中心线颜色
1245
+ * @property [dashLength = 16.0] - 中心线虚线间隔长度,以像素为单位
1246
+ * @property [widthRatio = 0.1] - 中心线百分比
1247
+ * @property [sidesColor = Cesium.Color.WHITE] - 外侧线颜色
1248
+ * @property [sidesDashLength = 32] - 外侧线长度
1249
+ * @property [sidesWidthRatio = 0.1] - 外侧线百分比
1250
+ * @property [dashPattern = 255.0] - 指定的16位模式
1251
+ */
1252
+ const LineThreeDash: string;
1244
1253
  /**
1245
1254
  * 墙体: 走马灯效果
1246
1255
  * @property [image = Cesium.Material.DefaultImageId] - 背景图片URL
@@ -1266,6 +1275,9 @@ declare namespace MaterialType {
1266
1275
  * @property [opacity = 1.0] - 透明度
1267
1276
  * @property [color = Cesium.Color.WHITE] - 颜色
1268
1277
  * @property [speed = 0] - 不为0时呈现图片滚动效果,数字代表滚动速度
1278
+ * @property [flipx = false] - 是否X方向翻转图片
1279
+ * @property [flipy = false] - 是否Y方向翻转图片
1280
+ * @property [noWhite = true] - 是否不显示白色,true时没有加载完成前的白色闪烁,但也不支持纯白色的图片
1269
1281
  */
1270
1282
  const Image2: string;
1271
1283
  /**
@@ -1809,6 +1821,221 @@ declare class Compass extends BaseControl {
1809
1821
  _removedHook(): void;
1810
1822
  }
1811
1823
 
1824
+ /**
1825
+ * 时钟仪表控制 控件 (Cesium原生)
1826
+ * @param [options] - 参数对象,包括以下:
1827
+ * @param [options.id = createGuid()] - 对象的id标识
1828
+ * @param [options.enabled = true] - 对象的启用状态
1829
+ * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.container
1830
+ */
1831
+ declare class Animation extends BaseCzmControl {
1832
+ constructor(options?: {
1833
+ id?: string | number;
1834
+ enabled?: boolean;
1835
+ parentContainer?: HTMLElement;
1836
+ });
1837
+ }
1838
+
1839
+ /**
1840
+ * Cesium原生控件封装基类
1841
+ * @param [options] - 参数对象,包括以下:
1842
+ * @param [options.id = createGuid()] - 对象的id标识
1843
+ * @param [options.enabled = true] - 对象的启用状态
1844
+ * @param [options.destroyCzm = false] - remove移除时是否销毁Cesium对象,true时销毁,false时只是DOM隐藏
1845
+ */
1846
+ declare class BaseCzmControl extends BaseControl {
1847
+ constructor(options?: {
1848
+ id?: string | number;
1849
+ enabled?: boolean;
1850
+ destroyCzm?: boolean;
1851
+ });
1852
+ }
1853
+
1854
+ /**
1855
+ * 底图切换 控件 (Cesium原生)
1856
+ * @param [options] - 参数对象,包括以下:
1857
+ * @param [options.id = createGuid()] - 对象的id标识
1858
+ * @param [options.enabled = true] - 对象的启用状态
1859
+ * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.container
1860
+ */
1861
+ declare class BaseLayerPicker extends BaseCzmControl {
1862
+ constructor(options?: {
1863
+ id?: string | number;
1864
+ enabled?: boolean;
1865
+ parentContainer?: HTMLElement;
1866
+ });
1867
+ /**
1868
+ * 父容器DOM对象
1869
+ */
1870
+ readonly parentContainer: HTMLElement;
1871
+ }
1872
+
1873
+ /**
1874
+ * 全屏按钮 控件 (Cesium原生)
1875
+ * @param [options] - 参数对象,包括以下:
1876
+ * @param [options.id = createGuid()] - 对象的id标识
1877
+ * @param [options.enabled = true] - 对象的启用状态
1878
+ * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.toolbar
1879
+ */
1880
+ declare class FullscreenButton extends BaseCzmControl {
1881
+ constructor(options?: {
1882
+ id?: string | number;
1883
+ enabled?: boolean;
1884
+ parentContainer?: HTMLElement;
1885
+ });
1886
+ /**
1887
+ * 父容器DOM对象
1888
+ */
1889
+ readonly parentContainer: HTMLElement;
1890
+ }
1891
+
1892
+ /**
1893
+ * 地名查找按钮 控件 (Cesium原生)
1894
+ * @param [options] - 参数对象,包括以下:
1895
+ * @param [options.id = createGuid()] - 对象的id标识
1896
+ * @param [options.enabled = true] - 对象的启用状态
1897
+ * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.toolbar
1898
+ */
1899
+ declare class Geocoder extends BaseCzmControl {
1900
+ constructor(options?: {
1901
+ id?: string | number;
1902
+ enabled?: boolean;
1903
+ parentContainer?: HTMLElement;
1904
+ });
1905
+ /**
1906
+ * 父容器DOM对象
1907
+ */
1908
+ readonly parentContainer: HTMLElement;
1909
+ }
1910
+
1911
+ /**
1912
+ * 全屏按钮 控件 (Cesium原生)
1913
+ * @param [options] - 参数对象,包括以下:
1914
+ * @param [options.id = createGuid()] - 对象的id标识
1915
+ * @param [options.enabled = true] - 对象的启用状态
1916
+ * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.toolbar
1917
+ */
1918
+ declare class HomeButton extends BaseCzmControl {
1919
+ constructor(options?: {
1920
+ id?: string | number;
1921
+ enabled?: boolean;
1922
+ parentContainer?: HTMLElement;
1923
+ });
1924
+ /**
1925
+ * 父容器DOM对象
1926
+ */
1927
+ readonly parentContainer: HTMLElement;
1928
+ }
1929
+
1930
+ /**
1931
+ * 帮助按钮 控件 (Cesium原生)
1932
+ * @param [options] - 参数对象,包括以下:
1933
+ * @param [options.id = createGuid()] - 对象的id标识
1934
+ * @param [options.enabled = true] - 对象的启用状态
1935
+ * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.toolbar
1936
+ */
1937
+ declare class NavigationHelpButton extends BaseCzmControl {
1938
+ constructor(options?: {
1939
+ id?: string | number;
1940
+ enabled?: boolean;
1941
+ parentContainer?: HTMLElement;
1942
+ });
1943
+ /**
1944
+ * 父容器DOM对象
1945
+ */
1946
+ readonly parentContainer: HTMLElement;
1947
+ }
1948
+
1949
+ /**
1950
+ * 投影切换按钮 控件 (Cesium原生)
1951
+ * @param [options] - 参数对象,包括以下:
1952
+ * @param [options.id = createGuid()] - 对象的id标识
1953
+ * @param [options.enabled = true] - 对象的启用状态
1954
+ * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.toolbar
1955
+ */
1956
+ declare class ProjectionPicker extends BaseCzmControl {
1957
+ constructor(options?: {
1958
+ id?: string | number;
1959
+ enabled?: boolean;
1960
+ parentContainer?: HTMLElement;
1961
+ });
1962
+ /**
1963
+ * 父容器DOM对象
1964
+ */
1965
+ readonly parentContainer: HTMLElement;
1966
+ }
1967
+
1968
+ /**
1969
+ * 二三维切换按钮 控件 (Cesium原生)
1970
+ * @param [options] - 参数对象,包括以下:
1971
+ * @param [options.id = createGuid()] - 对象的id标识
1972
+ * @param [options.enabled = true] - 对象的启用状态
1973
+ * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.toolbar
1974
+ */
1975
+ declare class SceneModePicker extends BaseCzmControl {
1976
+ constructor(options?: {
1977
+ id?: string | number;
1978
+ enabled?: boolean;
1979
+ parentContainer?: HTMLElement;
1980
+ });
1981
+ /**
1982
+ * 父容器DOM对象
1983
+ */
1984
+ readonly parentContainer: HTMLElement;
1985
+ }
1986
+
1987
+ /**
1988
+ * 时间线 控件 (Cesium原生)
1989
+ * @param [options] - 参数对象,包括以下:
1990
+ * @param [options.maxSpan = 1] - 刻度放大的最大刻度跨度,单位:秒
1991
+ * @param [options.style] - 可以CSS样式,如:
1992
+ * @param [options.style.top] - css定位top位置, 如 top: '10px'
1993
+ * @param [options.style.bottom = 0] - css定位bottom位置
1994
+ * @param [options.style.left = 0] - css定位left位置
1995
+ * @param [options.style.right = 0] - css定位right位置
1996
+ * @param [options.id = createGuid()] - 对象的id标识
1997
+ * @param [options.enabled = true] - 对象的启用状态
1998
+ * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.container
1999
+ */
2000
+ declare class Timeline extends BaseCzmControl {
2001
+ constructor(options?: {
2002
+ maxSpan?: number;
2003
+ style?: {
2004
+ top?: string;
2005
+ bottom?: string;
2006
+ left?: string;
2007
+ right?: string;
2008
+ };
2009
+ id?: string | number;
2010
+ enabled?: boolean;
2011
+ parentContainer?: HTMLElement;
2012
+ });
2013
+ /**
2014
+ * @param startTime - 开始时间
2015
+ * @param stopTime - 结束时间
2016
+ */
2017
+ zoomTo(startTime: Cesium.JulianDate, stopTime: Cesium.JulianDate): void;
2018
+ }
2019
+
2020
+ /**
2021
+ * VR效果按钮 控件 (Cesium原生)
2022
+ * @param [options] - 参数对象,包括以下:
2023
+ * @param [options.id = createGuid()] - 对象的id标识
2024
+ * @param [options.enabled = true] - 对象的启用状态
2025
+ * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.toolbar
2026
+ */
2027
+ declare class VRButton extends BaseCzmControl {
2028
+ constructor(options?: {
2029
+ id?: string | number;
2030
+ enabled?: boolean;
2031
+ parentContainer?: HTMLElement;
2032
+ });
2033
+ /**
2034
+ * 父容器DOM对象
2035
+ */
2036
+ readonly parentContainer: HTMLElement;
2037
+ }
2038
+
1812
2039
  declare namespace DistanceLegend {
1813
2040
  /**
1814
2041
  * 当前类支持的{@link EventType}事件类型
@@ -2146,43 +2373,6 @@ declare class OverviewMap extends BaseControl {
2146
2373
  _removedHook(): void;
2147
2374
  }
2148
2375
 
2149
- /**
2150
- * 时间线 控件
2151
- * @param [options] - 参数对象,包括以下:
2152
- * @param [options.maxSpan = 1] - 刻度放大的最大刻度跨度,单位:秒
2153
- * @param [options.style] - 可以CSS样式,如:
2154
- * @param [options.style.top] - css定位top位置, 如 top: '10px'
2155
- * @param [options.style.bottom = 0] - css定位bottom位置
2156
- * @param [options.style.left = 0] - css定位left位置
2157
- * @param [options.style.right = 0] - css定位right位置
2158
- * @param [options.id = createGuid()] - 对象的id标识
2159
- * @param [options.enabled = true] - 对象的启用状态
2160
- * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.container
2161
- * @param [options.insertIndex] - 可以自定义插入到父容器中的index顺序,默认是插入到最后面。
2162
- * @param [options.insertBefore] - 可以自定义插入到指定兄弟容器的前面,与insertIndex二选一。
2163
- */
2164
- declare class Timeline extends BaseControl {
2165
- constructor(options?: {
2166
- maxSpan?: number;
2167
- style?: {
2168
- top?: string;
2169
- bottom?: string;
2170
- left?: string;
2171
- right?: string;
2172
- };
2173
- id?: string | number;
2174
- enabled?: boolean;
2175
- parentContainer?: HTMLElement;
2176
- insertIndex?: number;
2177
- insertBefore?: HTMLElement;
2178
- });
2179
- /**
2180
- * @param startTime - 开始时间
2181
- * @param stopTime - 结束时间
2182
- */
2183
- zoomTo(startTime: Cesium.JulianDate, stopTime: Cesium.JulianDate): void;
2184
- }
2185
-
2186
2376
  declare namespace ToolButton {
2187
2377
  /**
2188
2378
  * 当前类支持的{@link EventType}事件类型
@@ -2258,7 +2448,7 @@ declare class Zoom extends BaseControl {
2258
2448
 
2259
2449
  /**
2260
2450
  * 基础类,SDK中几乎所有类的基类,都是继承该基类的。
2261
- * @param [options] - 参数名称
2451
+ * @param [options] - 参数
2262
2452
  */
2263
2453
  declare class BaseClass {
2264
2454
  constructor(options?: any);
@@ -3062,7 +3252,7 @@ declare class BloomEffect extends BaseEffect {
3062
3252
  * @param [options.color = Cesium.Color.WHITE] - 泛光颜色
3063
3253
  * @param [options.contrast = 128] - 对比度,取值范围[-255.0,255.0]
3064
3254
  * @param [options.brightness = -0.3] - 亮度, 将输入纹理的RGB值转换为色相、饱和度和亮度(HSB),然后将该值添加到亮度中。
3065
- * @param [options.blurSamples = 32] - 模糊样本
3255
+ * @param [options.blurSamples = 32.0] - 模糊样本
3066
3256
  * @param [options.delta = 1.0] - 增量
3067
3257
  * @param [options.sigma = 3.78] - delta和sigma用于计算高斯滤波器的权值。方程是 <code>exp((-0.5 * delta * delta) / (sigma * sigma))</code>。
3068
3258
  * @param [options.stepSize = 5.0] - 步长,是下一个texel的距离
@@ -3347,12 +3537,14 @@ declare class RainEffect extends BaseEffect {
3347
3537
  * @param [options] - 参数对象,包括以下:
3348
3538
  * @param [options.enabled = true] - 对象的启用状态
3349
3539
  * @param [options.alpha = 1.0] - 覆盖强度 0-1
3540
+ * @param [options.layer] - 如果传值3dtiles图层,只对该模型生效
3350
3541
  * @param [options.maxHeight = 9000] - 最大高度,限定超出该高度不显示积雪效果
3351
3542
  */
3352
3543
  declare class SnowCoverEffect extends BaseEffect {
3353
3544
  constructor(options?: {
3354
3545
  enabled?: boolean;
3355
3546
  alpha?: number;
3547
+ layer?: TilesetLayer;
3356
3548
  maxHeight?: number;
3357
3549
  });
3358
3550
  /**
@@ -3509,6 +3701,8 @@ declare namespace BaseGraphic {
3509
3701
  * @param [options.show = true] - 矢量数据是否显示
3510
3702
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡
3511
3703
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
3704
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
3705
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
3512
3706
  */
3513
3707
  declare class BaseGraphic extends BaseClass {
3514
3708
  constructor(options: {
@@ -3526,6 +3720,8 @@ declare class BaseGraphic extends BaseClass {
3526
3720
  show?: boolean;
3527
3721
  eventParent?: BaseClass | boolean;
3528
3722
  allowDrillPick?: boolean | ((...params: any[]) => any);
3723
+ flyTo?: boolean;
3724
+ flyToOptions?: any;
3529
3725
  });
3530
3726
  /**
3531
3727
  * 矢量数据类型
@@ -3991,6 +4187,8 @@ declare class BaseCombine extends BasePrimitive {
3991
4187
  * @param [options.show = true] - 矢量数据是否显示
3992
4188
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
3993
4189
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4190
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
4191
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
3994
4192
  */
3995
4193
  declare class BasePointCombine extends BasePolyCombine {
3996
4194
  constructor(options: {
@@ -4025,6 +4223,8 @@ declare class BasePointCombine extends BasePolyCombine {
4025
4223
  show?: boolean;
4026
4224
  eventParent?: BaseClass | boolean;
4027
4225
  allowDrillPick?: boolean | ((...params: any[]) => any);
4226
+ flyTo?: boolean;
4227
+ flyToOptions?: any;
4028
4228
  });
4029
4229
  }
4030
4230
 
@@ -4060,6 +4260,8 @@ declare class BasePointCombine extends BasePolyCombine {
4060
4260
  * @param [options.show = true] - 矢量数据是否显示
4061
4261
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4062
4262
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4263
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
4264
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4063
4265
  */
4064
4266
  declare class BasePolyCombine extends BaseCombine {
4065
4267
  constructor(options: {
@@ -4094,6 +4296,8 @@ declare class BasePolyCombine extends BaseCombine {
4094
4296
  show?: boolean;
4095
4297
  eventParent?: BaseClass | boolean;
4096
4298
  allowDrillPick?: boolean | ((...params: any[]) => any);
4299
+ flyTo?: boolean;
4300
+ flyToOptions?: any;
4097
4301
  });
4098
4302
  /**
4099
4303
  * 样式信息
@@ -4146,6 +4350,8 @@ declare class BasePolyCombine extends BaseCombine {
4146
4350
  * @param [options.show = true] - 矢量数据是否显示
4147
4351
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4148
4352
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4353
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
4354
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4149
4355
  */
4150
4356
  declare class BoxCombine extends BasePointCombine {
4151
4357
  constructor(options: {
@@ -4180,6 +4386,8 @@ declare class BoxCombine extends BasePointCombine {
4180
4386
  show?: boolean;
4181
4387
  eventParent?: BaseClass | boolean;
4182
4388
  allowDrillPick?: boolean | ((...params: any[]) => any);
4389
+ flyTo?: boolean;
4390
+ flyToOptions?: any;
4183
4391
  });
4184
4392
  }
4185
4393
 
@@ -4215,6 +4423,8 @@ declare class BoxCombine extends BasePointCombine {
4215
4423
  * @param [options.show = true] - 矢量数据是否显示
4216
4424
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4217
4425
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4426
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
4427
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4218
4428
  */
4219
4429
  declare class CircleCombine extends BasePointCombine {
4220
4430
  constructor(options: {
@@ -4249,6 +4459,8 @@ declare class CircleCombine extends BasePointCombine {
4249
4459
  show?: boolean;
4250
4460
  eventParent?: BaseClass | boolean;
4251
4461
  allowDrillPick?: boolean | ((...params: any[]) => any);
4462
+ flyTo?: boolean;
4463
+ flyToOptions?: any;
4252
4464
  });
4253
4465
  }
4254
4466
 
@@ -4283,7 +4495,9 @@ declare class CircleCombine extends BasePointCombine {
4283
4495
  * @param [options.name = ''] - 矢量数据名称
4284
4496
  * @param [options.show = true] - 矢量数据是否显示
4285
4497
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4286
- * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取*
4498
+ * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4499
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
4500
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4287
4501
  */
4288
4502
  declare class CorridorCombine extends BasePolyCombine {
4289
4503
  constructor(options: {
@@ -4318,6 +4532,8 @@ declare class CorridorCombine extends BasePolyCombine {
4318
4532
  show?: boolean;
4319
4533
  eventParent?: BaseClass | boolean;
4320
4534
  allowDrillPick?: boolean | ((...params: any[]) => any);
4535
+ flyTo?: boolean;
4536
+ flyToOptions?: any;
4321
4537
  });
4322
4538
  }
4323
4539
 
@@ -4353,6 +4569,8 @@ declare class CorridorCombine extends BasePolyCombine {
4353
4569
  * @param [options.show = true] - 矢量数据是否显示
4354
4570
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4355
4571
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4572
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
4573
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4356
4574
  */
4357
4575
  declare class CylinderCombine extends BasePointCombine {
4358
4576
  constructor(options: {
@@ -4387,6 +4605,8 @@ declare class CylinderCombine extends BasePointCombine {
4387
4605
  show?: boolean;
4388
4606
  eventParent?: BaseClass | boolean;
4389
4607
  allowDrillPick?: boolean | ((...params: any[]) => any);
4608
+ flyTo?: boolean;
4609
+ flyToOptions?: any;
4390
4610
  });
4391
4611
  }
4392
4612
 
@@ -4422,6 +4642,8 @@ declare class CylinderCombine extends BasePointCombine {
4422
4642
  * @param [options.show = true] - 矢量数据是否显示
4423
4643
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4424
4644
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4645
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
4646
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4425
4647
  */
4426
4648
  declare class EllipsoidCombine extends BasePointCombine {
4427
4649
  constructor(options: {
@@ -4456,6 +4678,8 @@ declare class EllipsoidCombine extends BasePointCombine {
4456
4678
  show?: boolean;
4457
4679
  eventParent?: BaseClass | boolean;
4458
4680
  allowDrillPick?: boolean | ((...params: any[]) => any);
4681
+ flyTo?: boolean;
4682
+ flyToOptions?: any;
4459
4683
  });
4460
4684
  }
4461
4685
 
@@ -4491,6 +4715,8 @@ declare namespace FlatBillboard {
4491
4715
  * @param [options.show = true] - 矢量数据是否显示
4492
4716
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4493
4717
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4718
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
4719
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4494
4720
  */
4495
4721
  declare class FlatBillboard extends BaseCombine {
4496
4722
  constructor(options: {
@@ -4508,6 +4734,8 @@ declare class FlatBillboard extends BaseCombine {
4508
4734
  show?: boolean;
4509
4735
  eventParent?: BaseClass | boolean;
4510
4736
  allowDrillPick?: boolean | ((...params: any[]) => any);
4737
+ flyTo?: boolean;
4738
+ flyToOptions?: any;
4511
4739
  });
4512
4740
  /**
4513
4741
  * 指定数据将显示在与摄像机的多大距离
@@ -4564,6 +4792,8 @@ declare class FlatBillboard extends BaseCombine {
4564
4792
  * @param [options.show = true] - 矢量数据是否显示
4565
4793
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4566
4794
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4795
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
4796
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4567
4797
  */
4568
4798
  declare class FrustumCombine extends BasePointCombine {
4569
4799
  constructor(options: {
@@ -4598,6 +4828,8 @@ declare class FrustumCombine extends BasePointCombine {
4598
4828
  show?: boolean;
4599
4829
  eventParent?: BaseClass | boolean;
4600
4830
  allowDrillPick?: boolean | ((...params: any[]) => any);
4831
+ flyTo?: boolean;
4832
+ flyToOptions?: any;
4601
4833
  });
4602
4834
  }
4603
4835
 
@@ -4623,7 +4855,8 @@ declare class FrustumCombine extends BasePointCombine {
4623
4855
  * @param [options.lightColor] - 光的颜色当遮光模型。当undefined场景的浅色被使用代替。
4624
4856
  * @param [options.backFaceCulling = true] - 是否剔除面向背面的几何图形。当为真时,背面剔除由glTF材质的双面属性决定;当为false时,禁用背面剔除。
4625
4857
  * @param [options.debugShowBoundingVolume = false] - 仅供调试。查看模型的包围边界球。
4626
- * @param [options.enableDebugWireframe = false] - 仅供调试。查看模型的三角网线框图。
4858
+ * @param [options.enableDebugWireframe = false] - 仅供调试。是否可以通过debugWireframe来切换查看模型的三角网线框图。
4859
+ * @param [options.debugWireframe = false] - 仅供调试。是否打开模型的三角网线框图。
4627
4860
  *
4628
4861
  * //以下是 模型动画相关
4629
4862
  * @param [options.startTime] - 场景时间开始播放动画。当undefined时,动画从下一帧开始。
@@ -4638,6 +4871,8 @@ declare class FrustumCombine extends BasePointCombine {
4638
4871
  * @param [options.show = true] - 矢量数据是否显示
4639
4872
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4640
4873
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4874
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
4875
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4641
4876
  */
4642
4877
  declare class ModelCombine extends BaseCombine {
4643
4878
  constructor(options: {
@@ -4661,6 +4896,7 @@ declare class ModelCombine extends BaseCombine {
4661
4896
  backFaceCulling?: boolean;
4662
4897
  debugShowBoundingVolume?: boolean;
4663
4898
  enableDebugWireframe?: boolean;
4899
+ debugWireframe?: boolean;
4664
4900
  startTime?: Cesium.JulianDate;
4665
4901
  delay?: number;
4666
4902
  stopTime?: Cesium.JulianDate;
@@ -4673,6 +4909,8 @@ declare class ModelCombine extends BaseCombine {
4673
4909
  show?: boolean;
4674
4910
  eventParent?: BaseClass | boolean;
4675
4911
  allowDrillPick?: boolean | ((...params: any[]) => any);
4912
+ flyTo?: boolean;
4913
+ flyToOptions?: any;
4676
4914
  });
4677
4915
  /**
4678
4916
  * 是否可以调整透明度
@@ -4712,6 +4950,8 @@ declare class ModelCombine extends BaseCombine {
4712
4950
  * @param [options.show = true] - 矢量数据是否显示
4713
4951
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4714
4952
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4953
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
4954
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4715
4955
  */
4716
4956
  declare class PlaneCombine extends BasePointCombine {
4717
4957
  constructor(options: {
@@ -4746,6 +4986,8 @@ declare class PlaneCombine extends BasePointCombine {
4746
4986
  show?: boolean;
4747
4987
  eventParent?: BaseClass | boolean;
4748
4988
  allowDrillPick?: boolean | ((...params: any[]) => any);
4989
+ flyTo?: boolean;
4990
+ flyToOptions?: any;
4749
4991
  });
4750
4992
  }
4751
4993
 
@@ -4758,7 +5000,7 @@ declare class PlaneCombine extends BasePointCombine {
4758
5000
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4759
5001
  * @param [options.style] - 所有面的公共样式信息
4760
5002
  * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4761
- * // * @param {String} [options.highlight.type] 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
5003
+ * // * @param {string} [options.highlight.type] 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4762
5004
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4763
5005
  * @param [options.attributes] - [cesium原生]每个实例的属性。
4764
5006
  * @param [options.depthFailAppearance] - 当深度测试失败时,用于为该图元着色的外观。
@@ -4781,8 +5023,10 @@ declare class PlaneCombine extends BasePointCombine {
4781
5023
  * @param [options.show = true] - 矢量数据是否显示
4782
5024
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4783
5025
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5026
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
5027
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。 @extends {BasePolyCombine}
4784
5028
  */
4785
- declare class PolygonCombine extends BasePolyCombine {
5029
+ declare class PolygonCombine {
4786
5030
  constructor(options: {
4787
5031
  instances?: {
4788
5032
  positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
@@ -4813,6 +5057,8 @@ declare class PolygonCombine extends BasePolyCombine {
4813
5057
  show?: boolean;
4814
5058
  eventParent?: BaseClass | boolean;
4815
5059
  allowDrillPick?: boolean | ((...params: any[]) => any);
5060
+ flyTo?: boolean;
5061
+ flyToOptions?: any;
4816
5062
  });
4817
5063
  }
4818
5064
 
@@ -4847,7 +5093,9 @@ declare class PolygonCombine extends BasePolyCombine {
4847
5093
  * @param [options.name = ''] - 矢量数据名称
4848
5094
  * @param [options.show = true] - 矢量数据是否显示
4849
5095
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4850
- * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取*
5096
+ * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5097
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
5098
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4851
5099
  */
4852
5100
  declare class PolylineCombine extends BasePolyCombine {
4853
5101
  constructor(options: {
@@ -4882,6 +5130,8 @@ declare class PolylineCombine extends BasePolyCombine {
4882
5130
  show?: boolean;
4883
5131
  eventParent?: BaseClass | boolean;
4884
5132
  allowDrillPick?: boolean | ((...params: any[]) => any);
5133
+ flyTo?: boolean;
5134
+ flyToOptions?: any;
4885
5135
  });
4886
5136
  }
4887
5137
 
@@ -4916,7 +5166,9 @@ declare class PolylineCombine extends BasePolyCombine {
4916
5166
  * @param [options.name = ''] - 矢量数据名称
4917
5167
  * @param [options.show = true] - 矢量数据是否显示
4918
5168
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4919
- * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取*
5169
+ * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5170
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
5171
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4920
5172
  */
4921
5173
  declare class PolylineVolumeCombine extends BasePolyCombine {
4922
5174
  constructor(options: {
@@ -4951,6 +5203,8 @@ declare class PolylineVolumeCombine extends BasePolyCombine {
4951
5203
  show?: boolean;
4952
5204
  eventParent?: BaseClass | boolean;
4953
5205
  allowDrillPick?: boolean | ((...params: any[]) => any);
5206
+ flyTo?: boolean;
5207
+ flyToOptions?: any;
4954
5208
  });
4955
5209
  }
4956
5210
 
@@ -4986,6 +5240,8 @@ declare class PolylineVolumeCombine extends BasePolyCombine {
4986
5240
  * @param [options.show = true] - 矢量数据是否显示
4987
5241
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4988
5242
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5243
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
5244
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
4989
5245
  */
4990
5246
  declare class RectangleCombine extends BasePolyCombine {
4991
5247
  constructor(options: {
@@ -5020,6 +5276,8 @@ declare class RectangleCombine extends BasePolyCombine {
5020
5276
  show?: boolean;
5021
5277
  eventParent?: BaseClass | boolean;
5022
5278
  allowDrillPick?: boolean | ((...params: any[]) => any);
5279
+ flyTo?: boolean;
5280
+ flyToOptions?: any;
5023
5281
  });
5024
5282
  }
5025
5283
 
@@ -5054,7 +5312,9 @@ declare class RectangleCombine extends BasePolyCombine {
5054
5312
  * @param [options.name = ''] - 矢量数据名称
5055
5313
  * @param [options.show = true] - 矢量数据是否显示
5056
5314
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5057
- * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取*
5315
+ * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5316
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
5317
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
5058
5318
  */
5059
5319
  declare class WallCombine extends BasePolyCombine {
5060
5320
  constructor(options: {
@@ -5089,6 +5349,8 @@ declare class WallCombine extends BasePolyCombine {
5089
5349
  show?: boolean;
5090
5350
  eventParent?: BaseClass | boolean;
5091
5351
  allowDrillPick?: boolean | ((...params: any[]) => any);
5352
+ flyTo?: boolean;
5353
+ flyToOptions?: any;
5092
5354
  });
5093
5355
  }
5094
5356
 
@@ -5121,7 +5383,9 @@ declare class WallCombine extends BasePolyCombine {
5121
5383
  * @param [options.name = ''] - 矢量数据名称
5122
5384
  * @param [options.show = true] - 矢量数据是否显示
5123
5385
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5124
- * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取*
5386
+ * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5387
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
5388
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
5125
5389
  */
5126
5390
  declare class WaterCombine extends PolygonCombine {
5127
5391
  constructor(options: {
@@ -5153,6 +5417,8 @@ declare class WaterCombine extends PolygonCombine {
5153
5417
  show?: boolean;
5154
5418
  eventParent?: BaseClass | boolean;
5155
5419
  allowDrillPick?: boolean | ((...params: any[]) => any);
5420
+ flyTo?: boolean;
5421
+ flyToOptions?: any;
5156
5422
  });
5157
5423
  }
5158
5424
 
@@ -5190,6 +5456,8 @@ declare namespace ArcFrustum {
5190
5456
  * @param [options.name = ''] - 矢量数据名称
5191
5457
  * @param [options.show = true] - 矢量数据是否显示
5192
5458
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5459
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
5460
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
5193
5461
  */
5194
5462
  declare class ArcFrustum extends BasePointPrimitive {
5195
5463
  constructor(options: {
@@ -5201,6 +5469,8 @@ declare class ArcFrustum extends BasePointPrimitive {
5201
5469
  name?: string;
5202
5470
  show?: boolean;
5203
5471
  eventParent?: BaseClass | boolean;
5472
+ flyTo?: boolean;
5473
+ flyToOptions?: any;
5204
5474
  });
5205
5475
  /**
5206
5476
  * 颜色
@@ -5248,7 +5518,7 @@ declare class ArcFrustum extends BasePointPrimitive {
5248
5518
  * @param [options.path] - 使用 path轨迹 对象,及其对应的样式
5249
5519
  * @param [options.polyline] - 使用 polyline路线 对象,及其对应的样式 <br/>
5250
5520
  * // * @param {number} [options.polyline.maxDistance] 设置保留的轨迹长度值(单位:米),不设置时保留所有的轨迹
5251
- * // * @param {Boolean} [options.polyline.showAll] 是否一直显示展示所有坐标
5521
+ * // * @param {boolean} [options.polyline.showAll] 是否一直显示展示所有坐标
5252
5522
  * @param [options.wall] - 使用 墙体 对象,及其对应的样式 <br/>
5253
5523
  * // * @param {number} [options.wall.maxDistance] 设置保留的轨迹长度值(单位:米),不设置时保留所有的轨迹<br/>
5254
5524
  * // * @param {number} [options.wall.surface] 设置墙底部高度是否贴地
@@ -5280,6 +5550,8 @@ declare class ArcFrustum extends BasePointPrimitive {
5280
5550
  * @param [options.show = true] - 矢量数据是否显示
5281
5551
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5282
5552
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5553
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
5554
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
5283
5555
  */
5284
5556
  declare class FixedRoute extends Route {
5285
5557
  constructor(options: {
@@ -5336,6 +5608,8 @@ declare class FixedRoute extends Route {
5336
5608
  show?: boolean;
5337
5609
  eventParent?: BaseClass | boolean;
5338
5610
  allowDrillPick?: boolean | ((...params: any[]) => any);
5611
+ flyTo?: boolean;
5612
+ flyToOptions?: any;
5339
5613
  });
5340
5614
  /**
5341
5615
  * 开始时间
@@ -5374,7 +5648,7 @@ declare class FixedRoute extends Route {
5374
5648
  /**
5375
5649
  * 计算贴地线
5376
5650
  * @param [options] - 控制参数
5377
- * @param [options.splitNum = 100] - 插值数,等比分割的个数
5651
+ * @param [options.splitNum = 100] - 插值数,等比分割的个数(概略值,有经纬网网格来插值)
5378
5652
  * @param [options.minDistance] - 插值最小间隔(单位:米),优先级高于splitNum
5379
5653
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
5380
5654
  * @param [options.objectsToExclude] - 贴模型分析时,排除的不进行贴模型计算的模型对象,可以是: primitives, entities, 或 3D Tiles features
@@ -5391,7 +5665,7 @@ declare class FixedRoute extends Route {
5391
5665
  /**
5392
5666
  * 获取剖面数据
5393
5667
  * @param [options] - 控制参数
5394
- * @param [options.splitNum = 100] - 插值数,等比分割的个数
5668
+ * @param [options.splitNum = 100] - 插值数,等比分割的个数(概略值,有经纬网网格来插值)
5395
5669
  * @param [options.minDistance] - 插值最小间隔(单位:米),优先级高于splitNum
5396
5670
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
5397
5671
  * @param [options.objectsToExclude] - 贴模型分析时,排除的不进行贴模型计算的模型对象,可以是: primitives, entities, 或 3D Tiles features
@@ -5496,6 +5770,8 @@ declare namespace ParticleSystem {
5496
5770
  * @param [options.name = ''] - 矢量数据名称
5497
5771
  * @param [options.show = true] - 矢量数据是否显示
5498
5772
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5773
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
5774
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
5499
5775
  */
5500
5776
  declare class ParticleSystem extends BasePointPrimitive {
5501
5777
  constructor(options: {
@@ -5509,6 +5785,8 @@ declare class ParticleSystem extends BasePointPrimitive {
5509
5785
  name?: string;
5510
5786
  show?: boolean;
5511
5787
  eventParent?: BaseClass | boolean;
5788
+ flyTo?: boolean;
5789
+ flyToOptions?: any;
5512
5790
  });
5513
5791
  /**
5514
5792
  * 最大视角高度(单位:米),超出该高度不显示粒子效果
@@ -5647,6 +5925,8 @@ declare namespace Route {
5647
5925
  * @param [options.show = true] - 矢量数据是否显示
5648
5926
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5649
5927
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5928
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
5929
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
5650
5930
  */
5651
5931
  declare class Route extends BasePointPrimitive {
5652
5932
  constructor(options: {
@@ -5693,6 +5973,8 @@ declare class Route extends BasePointPrimitive {
5693
5973
  show?: boolean;
5694
5974
  eventParent?: BaseClass | boolean;
5695
5975
  allowDrillPick?: boolean | ((...params: any[]) => any);
5976
+ flyTo?: boolean;
5977
+ flyToOptions?: any;
5696
5978
  });
5697
5979
  /**
5698
5980
  * 时序动态坐标对象
@@ -5927,6 +6209,8 @@ declare namespace Tetrahedron {
5927
6209
  * @param [options.name = ''] - 矢量数据名称
5928
6210
  * @param [options.show = true] - 矢量数据是否显示
5929
6211
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
6212
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
6213
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
5930
6214
  */
5931
6215
  declare class Tetrahedron extends BasePointPrimitive {
5932
6216
  constructor(options: {
@@ -5938,6 +6222,8 @@ declare class Tetrahedron extends BasePointPrimitive {
5938
6222
  name?: string;
5939
6223
  show?: boolean;
5940
6224
  eventParent?: BaseClass | boolean;
6225
+ flyTo?: boolean;
6226
+ flyToOptions?: any;
5941
6227
  });
5942
6228
  /**
5943
6229
  * 颜色
@@ -5968,6 +6254,8 @@ declare namespace Video3D {
5968
6254
  * @property [pitch = 0] - 俯仰角(度数值,0-360度)
5969
6255
  * @property [roll = 0] - 翻滚角(度数值,0-360度)
5970
6256
  * @property [opacity = 1.0] - 透明度 0.0 - 1.0
6257
+ * @property [flipx = false] - 是否X方向翻转图片
6258
+ * @property [flipy = false] - 是否Y方向翻转图片
5971
6259
  * @property [hiddenAreaColor = new Cesium.Color(0, 0, 0, 0.5)] - 无视频投影区域的颜色
5972
6260
  * @property [showFrustum = false] - 是否显示视椎体框线
5973
6261
  */
@@ -5982,6 +6270,8 @@ declare namespace Video3D {
5982
6270
  pitch?: number;
5983
6271
  roll?: number;
5984
6272
  opacity?: number;
6273
+ flipx?: boolean;
6274
+ flipy?: boolean;
5985
6275
  hiddenAreaColor?: Cesium.Color | string;
5986
6276
  showFrustum?: boolean;
5987
6277
  };
@@ -5998,6 +6288,8 @@ declare namespace Video3D {
5998
6288
  * @param [options.name = ''] - 矢量数据名称
5999
6289
  * @param [options.show = true] - 矢量数据是否显示
6000
6290
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
6291
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
6292
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
6001
6293
  */
6002
6294
  declare class Video3D extends ViewShed {
6003
6295
  constructor(options: {
@@ -6009,6 +6301,8 @@ declare class Video3D extends ViewShed {
6009
6301
  name?: string;
6010
6302
  show?: boolean;
6011
6303
  eventParent?: BaseClass | boolean;
6304
+ flyTo?: boolean;
6305
+ flyToOptions?: any;
6012
6306
  });
6013
6307
  /**
6014
6308
  * 对应的视频DOM元素
@@ -6018,6 +6312,10 @@ declare class Video3D extends ViewShed {
6018
6312
  * 最远投射距离,单位:米
6019
6313
  */
6020
6314
  distance: number;
6315
+ /**
6316
+ * 是否X方向翻转视频
6317
+ */
6318
+ flipx: boolean;
6021
6319
  /**
6022
6320
  * 暂停或播放 视频
6023
6321
  */
@@ -6066,6 +6364,8 @@ declare namespace ViewShed {
6066
6364
  * @param [options.name = ''] - 矢量数据名称
6067
6365
  * @param [options.show = true] - 矢量数据是否显示
6068
6366
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
6367
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
6368
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
6069
6369
  */
6070
6370
  declare class ViewShed extends BasePointPrimitive {
6071
6371
  constructor(options: {
@@ -6078,6 +6378,8 @@ declare class ViewShed extends BasePointPrimitive {
6078
6378
  name?: string;
6079
6379
  show?: boolean;
6080
6380
  eventParent?: BaseClass | boolean;
6381
+ flyTo?: boolean;
6382
+ flyToOptions?: any;
6081
6383
  });
6082
6384
  /**
6083
6385
  * 水平张角,半场角度
@@ -6229,6 +6531,8 @@ declare namespace DivBoderLabel {
6229
6531
  * @param [options.name = ''] - 矢量数据名称
6230
6532
  * @param [options.show = true] - 矢量数据是否显示
6231
6533
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
6534
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
6535
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
6232
6536
  */
6233
6537
  declare class DivBoderLabel extends DivGraphic {
6234
6538
  constructor(options: {
@@ -6251,6 +6555,8 @@ declare class DivBoderLabel extends DivGraphic {
6251
6555
  name?: string;
6252
6556
  show?: boolean;
6253
6557
  eventParent?: BaseClass | boolean;
6558
+ flyTo?: boolean;
6559
+ flyToOptions?: any;
6254
6560
  });
6255
6561
  /**
6256
6562
  * 设置或获取当前对象对应的Html
@@ -6334,6 +6640,8 @@ declare namespace DivGraphic {
6334
6640
  * @param [options.name = ''] - 矢量数据名称
6335
6641
  * @param [options.show = true] - 矢量数据是否显示
6336
6642
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
6643
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
6644
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
6337
6645
  */
6338
6646
  declare class DivGraphic extends BaseGraphic {
6339
6647
  constructor(options: {
@@ -6358,6 +6666,8 @@ declare class DivGraphic extends BaseGraphic {
6358
6666
  name?: string;
6359
6667
  show?: boolean;
6360
6668
  eventParent?: BaseClass | boolean;
6669
+ flyTo?: boolean;
6670
+ flyToOptions?: any;
6361
6671
  });
6362
6672
  /**
6363
6673
  * 位置坐标 (笛卡尔坐标), 赋值时可以传入LatLngPoint对象
@@ -6595,6 +6905,8 @@ declare namespace DivLightPoint {
6595
6905
  * @param [options.name = ''] - 矢量数据名称
6596
6906
  * @param [options.show = true] - 矢量数据是否显示
6597
6907
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
6908
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
6909
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
6598
6910
  */
6599
6911
  declare class DivLightPoint extends DivGraphic {
6600
6912
  constructor(options: {
@@ -6617,6 +6929,8 @@ declare class DivLightPoint extends DivGraphic {
6617
6929
  name?: string;
6618
6930
  show?: boolean;
6619
6931
  eventParent?: BaseClass | boolean;
6932
+ flyTo?: boolean;
6933
+ flyToOptions?: any;
6620
6934
  });
6621
6935
  /**
6622
6936
  * 设置或获取当前对象对应的Html
@@ -6702,6 +7016,8 @@ declare namespace DivUpLabel {
6702
7016
  * @param [options.name = ''] - 矢量数据名称
6703
7017
  * @param [options.show = true] - 矢量数据是否显示
6704
7018
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
7019
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
7020
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
6705
7021
  */
6706
7022
  declare class DivUpLabel extends DivGraphic {
6707
7023
  constructor(options: {
@@ -6724,6 +7040,8 @@ declare class DivUpLabel extends DivGraphic {
6724
7040
  name?: string;
6725
7041
  show?: boolean;
6726
7042
  eventParent?: BaseClass | boolean;
7043
+ flyTo?: boolean;
7044
+ flyToOptions?: any;
6727
7045
  });
6728
7046
  /**
6729
7047
  * 设置或获取当前对象对应的Html
@@ -6992,6 +7310,8 @@ declare class Tooltip extends Popup {
6992
7310
  * @param [options.show = true] - 矢量数据是否显示
6993
7311
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
6994
7312
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
7313
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
7314
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
6995
7315
  */
6996
7316
  declare class BaseEntity extends BaseGraphic {
6997
7317
  constructor(options: {
@@ -7014,6 +7334,8 @@ declare class BaseEntity extends BaseGraphic {
7014
7334
  show?: boolean;
7015
7335
  eventParent?: BaseClass | boolean;
7016
7336
  allowDrillPick?: boolean | ((...params: any[]) => any);
7337
+ flyTo?: boolean;
7338
+ flyToOptions?: any;
7017
7339
  });
7018
7340
  /**
7019
7341
  * 加载Entity数据的内部Cesium容器
@@ -7152,6 +7474,8 @@ declare class BaseEntity extends BaseGraphic {
7152
7474
  * @param [options.show = true] - 矢量数据是否显示
7153
7475
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
7154
7476
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
7477
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
7478
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
7155
7479
  */
7156
7480
  declare class BasePointEntity extends BaseEntity {
7157
7481
  constructor(options: {
@@ -7184,6 +7508,8 @@ declare class BasePointEntity extends BaseEntity {
7184
7508
  show?: boolean;
7185
7509
  eventParent?: BaseClass | boolean;
7186
7510
  allowDrillPick?: boolean | ((...params: any[]) => any);
7511
+ flyTo?: boolean;
7512
+ flyToOptions?: any;
7187
7513
  });
7188
7514
  /**
7189
7515
  * 编辑处理类
@@ -7322,6 +7648,8 @@ declare class BasePointEntity extends BaseEntity {
7322
7648
  * @param [options.show = true] - 矢量数据是否显示
7323
7649
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
7324
7650
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
7651
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
7652
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
7325
7653
  */
7326
7654
  declare class BasePolyEntity extends BaseEntity {
7327
7655
  constructor(options: {
@@ -7349,6 +7677,8 @@ declare class BasePolyEntity extends BaseEntity {
7349
7677
  show?: boolean;
7350
7678
  eventParent?: BaseClass | boolean;
7351
7679
  allowDrillPick?: boolean | ((...params: any[]) => any);
7680
+ flyTo?: boolean;
7681
+ flyToOptions?: any;
7352
7682
  });
7353
7683
  /**
7354
7684
  * 编辑时,是否可以整体平移
@@ -7549,6 +7879,8 @@ declare namespace BillboardEntity {
7549
7879
  * @param [options.show = true] - 矢量数据是否显示
7550
7880
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
7551
7881
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
7882
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
7883
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
7552
7884
  */
7553
7885
  declare class BillboardEntity extends BasePointEntity {
7554
7886
  constructor(options: {
@@ -7582,6 +7914,8 @@ declare class BillboardEntity extends BasePointEntity {
7582
7914
  show?: boolean;
7583
7915
  eventParent?: BaseClass | boolean;
7584
7916
  allowDrillPick?: boolean | ((...params: any[]) => any);
7917
+ flyTo?: boolean;
7918
+ flyToOptions?: any;
7585
7919
  });
7586
7920
  /**
7587
7921
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -7705,8 +8039,10 @@ declare namespace BoxEntity {
7705
8039
  * @param [options.show = true] - 矢量数据是否显示
7706
8040
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
7707
8041
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
8042
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
8043
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。 @extends {BasePointEntity}
7708
8044
  */
7709
- declare class BoxEntity extends BasePointEntity {
8045
+ declare class BoxEntity {
7710
8046
  constructor(options: {
7711
8047
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
7712
8048
  style: BoxEntity.StyleOptions | any;
@@ -7729,6 +8065,8 @@ declare class BoxEntity extends BasePointEntity {
7729
8065
  show?: boolean;
7730
8066
  eventParent?: BaseClass | boolean;
7731
8067
  allowDrillPick?: boolean | ((...params: any[]) => any);
8068
+ flyTo?: boolean;
8069
+ flyToOptions?: any;
7732
8070
  });
7733
8071
  /**
7734
8072
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -7853,8 +8191,10 @@ declare namespace CanvasLabelEntity {
7853
8191
  * @param [options.show = true] - 矢量数据是否显示
7854
8192
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
7855
8193
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
8194
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
8195
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。 @extends {BasePointEntity}
7856
8196
  */
7857
- declare class CanvasLabelEntity extends BasePointEntity {
8197
+ declare class CanvasLabelEntity {
7858
8198
  constructor(options: {
7859
8199
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
7860
8200
  style: CanvasLabelEntity.StyleOptions | any;
@@ -7876,6 +8216,8 @@ declare class CanvasLabelEntity extends BasePointEntity {
7876
8216
  show?: boolean;
7877
8217
  eventParent?: BaseClass | boolean;
7878
8218
  allowDrillPick?: boolean | ((...params: any[]) => any);
8219
+ flyTo?: boolean;
8220
+ flyToOptions?: any;
7879
8221
  });
7880
8222
  }
7881
8223
 
@@ -7981,6 +8323,8 @@ declare namespace CircleEntity {
7981
8323
  * @param [options.show = true] - 矢量数据是否显示
7982
8324
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
7983
8325
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
8326
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
8327
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
7984
8328
  */
7985
8329
  declare class CircleEntity extends BasePointEntity {
7986
8330
  constructor(options: {
@@ -8007,6 +8351,8 @@ declare class CircleEntity extends BasePointEntity {
8007
8351
  show?: boolean;
8008
8352
  eventParent?: BaseClass | boolean;
8009
8353
  allowDrillPick?: boolean | ((...params: any[]) => any);
8354
+ flyTo?: boolean;
8355
+ flyToOptions?: any;
8010
8356
  });
8011
8357
  /**
8012
8358
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -8210,6 +8556,8 @@ declare namespace ConeTrack {
8210
8556
  * @param [options.show = true] - 矢量数据是否显示
8211
8557
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
8212
8558
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
8559
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
8560
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
8213
8561
  */
8214
8562
  declare class ConeTrack extends CylinderEntity {
8215
8563
  constructor(options: {
@@ -8232,6 +8580,8 @@ declare class ConeTrack extends CylinderEntity {
8232
8580
  show?: boolean;
8233
8581
  eventParent?: BaseClass | boolean;
8234
8582
  allowDrillPick?: boolean | ((...params: any[]) => any);
8583
+ flyTo?: boolean;
8584
+ flyToOptions?: any;
8235
8585
  });
8236
8586
  /**
8237
8587
  * 追踪的目标位置(确定了方向和距离)
@@ -8372,6 +8722,8 @@ declare namespace CorridorEntity {
8372
8722
  * @param [options.show = true] - 矢量数据是否显示
8373
8723
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
8374
8724
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
8725
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
8726
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
8375
8727
  */
8376
8728
  declare class CorridorEntity extends BasePolyEntity {
8377
8729
  constructor(options: {
@@ -8398,6 +8750,8 @@ declare class CorridorEntity extends BasePolyEntity {
8398
8750
  show?: boolean;
8399
8751
  eventParent?: BaseClass | boolean;
8400
8752
  allowDrillPick?: boolean | ((...params: any[]) => any);
8753
+ flyTo?: boolean;
8754
+ flyToOptions?: any;
8401
8755
  });
8402
8756
  /**
8403
8757
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -8435,6 +8789,8 @@ declare class CorridorEntity extends BasePolyEntity {
8435
8789
  * @param [options.show = true] - 矢量数据是否显示
8436
8790
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
8437
8791
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
8792
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
8793
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
8438
8794
  */
8439
8795
  declare class CurveEntity extends PolylineEntity {
8440
8796
  constructor(options: {
@@ -8461,6 +8817,8 @@ declare class CurveEntity extends PolylineEntity {
8461
8817
  show?: boolean;
8462
8818
  eventParent?: BaseClass | boolean;
8463
8819
  allowDrillPick?: boolean | ((...params: any[]) => any);
8820
+ flyTo?: boolean;
8821
+ flyToOptions?: any;
8464
8822
  });
8465
8823
  }
8466
8824
 
@@ -8552,6 +8910,8 @@ declare namespace CylinderEntity {
8552
8910
  * @param [options.show = true] - 矢量数据是否显示
8553
8911
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
8554
8912
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
8913
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
8914
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
8555
8915
  */
8556
8916
  declare class CylinderEntity extends BasePointEntity {
8557
8917
  constructor(options: {
@@ -8576,6 +8936,8 @@ declare class CylinderEntity extends BasePointEntity {
8576
8936
  show?: boolean;
8577
8937
  eventParent?: BaseClass | boolean;
8578
8938
  allowDrillPick?: boolean | ((...params: any[]) => any);
8939
+ flyTo?: boolean;
8940
+ flyToOptions?: any;
8579
8941
  });
8580
8942
  /**
8581
8943
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -8695,6 +9057,8 @@ declare namespace DivBillboardEntity {
8695
9057
  * @param [options.show = true] - 矢量数据是否显示
8696
9058
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
8697
9059
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
9060
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
9061
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
8698
9062
  */
8699
9063
  declare class DivBillboardEntity extends BillboardEntity {
8700
9064
  constructor(options: {
@@ -8718,6 +9082,8 @@ declare class DivBillboardEntity extends BillboardEntity {
8718
9082
  show?: boolean;
8719
9083
  eventParent?: BaseClass | boolean;
8720
9084
  allowDrillPick?: boolean | ((...params: any[]) => any);
9085
+ flyTo?: boolean;
9086
+ flyToOptions?: any;
8721
9087
  });
8722
9088
  }
8723
9089
 
@@ -8969,6 +9335,8 @@ declare namespace EllipseEntity {
8969
9335
  * @param [options.show = true] - 矢量数据是否显示
8970
9336
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
8971
9337
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
9338
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
9339
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
8972
9340
  */
8973
9341
  declare class EllipseEntity extends CircleEntity {
8974
9342
  constructor(options: {
@@ -8992,6 +9360,8 @@ declare class EllipseEntity extends CircleEntity {
8992
9360
  show?: boolean;
8993
9361
  eventParent?: BaseClass | boolean;
8994
9362
  allowDrillPick?: boolean | ((...params: any[]) => any);
9363
+ flyTo?: boolean;
9364
+ flyToOptions?: any;
8995
9365
  });
8996
9366
  }
8997
9367
 
@@ -9128,6 +9498,8 @@ declare namespace EllipsoidEntity {
9128
9498
  * @param [options.show = true] - 矢量数据是否显示
9129
9499
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
9130
9500
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
9501
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
9502
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
9131
9503
  */
9132
9504
  declare class EllipsoidEntity extends BasePointEntity {
9133
9505
  constructor(options: {
@@ -9155,6 +9527,8 @@ declare class EllipsoidEntity extends BasePointEntity {
9155
9527
  show?: boolean;
9156
9528
  eventParent?: BaseClass | boolean;
9157
9529
  allowDrillPick?: boolean | ((...params: any[]) => any);
9530
+ flyTo?: boolean;
9531
+ flyToOptions?: any;
9158
9532
  });
9159
9533
  /**
9160
9534
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -9295,6 +9669,8 @@ declare namespace FontBillboardEntity {
9295
9669
  * @param [options.show = true] - 矢量数据是否显示
9296
9670
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
9297
9671
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
9672
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
9673
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
9298
9674
  */
9299
9675
  declare class FontBillboardEntity extends BasePointEntity {
9300
9676
  constructor(options: {
@@ -9318,6 +9694,8 @@ declare class FontBillboardEntity extends BasePointEntity {
9318
9694
  show?: boolean;
9319
9695
  eventParent?: BaseClass | boolean;
9320
9696
  allowDrillPick?: boolean | ((...params: any[]) => any);
9697
+ flyTo?: boolean;
9698
+ flyToOptions?: any;
9321
9699
  });
9322
9700
  }
9323
9701
 
@@ -9436,8 +9814,10 @@ declare namespace LabelEntity {
9436
9814
  * @param [options.show = true] - 矢量数据是否显示
9437
9815
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
9438
9816
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
9817
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
9818
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。 @extends {BasePointEntity}
9439
9819
  */
9440
- declare class LabelEntity extends BasePointEntity {
9820
+ declare class LabelEntity {
9441
9821
  constructor(options: {
9442
9822
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
9443
9823
  style: LabelEntity.StyleOptions | any;
@@ -9459,6 +9839,8 @@ declare class LabelEntity extends BasePointEntity {
9459
9839
  show?: boolean;
9460
9840
  eventParent?: BaseClass | boolean;
9461
9841
  allowDrillPick?: boolean | ((...params: any[]) => any);
9842
+ flyTo?: boolean;
9843
+ flyToOptions?: any;
9462
9844
  });
9463
9845
  /**
9464
9846
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -9492,10 +9874,6 @@ declare class LabelEntity extends BasePointEntity {
9492
9874
  * @returns 无
9493
9875
  */
9494
9876
  setOpacity(value: number): void;
9495
- /**
9496
- * 附加的label文本对象
9497
- */
9498
- readonly label: Cesium.Label | Cesium.LabelGraphics;
9499
9877
  }
9500
9878
 
9501
9879
  declare namespace ModelEntity {
@@ -9625,6 +10003,8 @@ declare namespace ModelEntity {
9625
10003
  * @param [options.show = true] - 矢量数据是否显示
9626
10004
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
9627
10005
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
10006
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
10007
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
9628
10008
  */
9629
10009
  declare class ModelEntity extends BasePointEntity {
9630
10010
  constructor(options: {
@@ -9664,6 +10044,8 @@ declare class ModelEntity extends BasePointEntity {
9664
10044
  show?: boolean;
9665
10045
  eventParent?: BaseClass | boolean;
9666
10046
  allowDrillPick?: boolean | ((...params: any[]) => any);
10047
+ flyTo?: boolean;
10048
+ flyToOptions?: any;
9667
10049
  });
9668
10050
  /**
9669
10051
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -9837,6 +10219,8 @@ declare namespace PathEntity {
9837
10219
  * @param [options.show = true] - 矢量数据是否显示
9838
10220
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
9839
10221
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
10222
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
10223
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
9840
10224
  */
9841
10225
  declare class PathEntity extends BasePointEntity {
9842
10226
  constructor(options: {
@@ -9864,6 +10248,8 @@ declare class PathEntity extends BasePointEntity {
9864
10248
  show?: boolean;
9865
10249
  eventParent?: BaseClass | boolean;
9866
10250
  allowDrillPick?: boolean | ((...params: any[]) => any);
10251
+ flyTo?: boolean;
10252
+ flyToOptions?: any;
9867
10253
  });
9868
10254
  /**
9869
10255
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -9949,6 +10335,78 @@ declare class PathEntity extends BasePointEntity {
9949
10335
  position: Cesium.Cartesian3 | LngLatPoint;
9950
10336
  }
9951
10337
 
10338
+ declare namespace PitEntity {
10339
+ /**
10340
+ * 井(Entity方式) 支持的样式信息,
10341
+ * @property image - 井墙面贴图URL
10342
+ * @property imageBottom - 井底面贴图URL
10343
+ * @property diffHeight - 井下深度(单位:米)
10344
+ * @property [splitNum = 50] - 井墙面每两点之间插值个数(概略值,有经纬网网格来插值)
10345
+ * @property [label] - 支持附带文字的显示
10346
+ */
10347
+ type StyleOptions = any | {
10348
+ image: string;
10349
+ imageBottom: string;
10350
+ diffHeight: number;
10351
+ splitNum?: number;
10352
+ label?: LabelPrimitive.StyleOptions | any;
10353
+ };
10354
+ }
10355
+
10356
+ /**
10357
+ * 井(Entity方式) 矢量对象
10358
+ * 用于显示地形开挖后的开挖效果。
10359
+ * @param options - 参数对象,包括以下:
10360
+ * @param options.positions - 坐标位置
10361
+ * @param options.style - 样式信息
10362
+ * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
10363
+ * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
10364
+ * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
10365
+ * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
10366
+ * @param [options.parent] - 要与此实体关联的父实体。
10367
+ * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
10368
+ * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
10369
+ * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
10370
+ * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
10371
+ * @param [options.tooltipOptions] - tooltip弹窗时的配置参数,也支持如pointerEvents等{@link Tooltip}构造参数
10372
+ * @param [options.contextmenuItems] - 当矢量数据支持右键菜单时,也可以bindContextMenu方法绑定
10373
+ * @param [options.id = createGuid()] - 矢量数据id标识
10374
+ * @param [options.name = ''] - 矢量数据名称
10375
+ * @param [options.show = true] - 矢量数据是否显示
10376
+ * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
10377
+ * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
10378
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
10379
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
10380
+ */
10381
+ declare class PitEntity extends BasePolyEntity {
10382
+ constructor(options: {
10383
+ positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
10384
+ style: PitEntity.StyleOptions | any;
10385
+ attr?: any;
10386
+ availability?: Cesium.TimeIntervalCollection;
10387
+ description?: Cesium.Property | string;
10388
+ viewFrom?: Cesium.Property;
10389
+ parent?: Cesium.Entity;
10390
+ onBeforeCreate?: (...params: any[]) => any;
10391
+ popup?: string | any[] | ((...params: any[]) => any);
10392
+ popupOptions?: Popup.StyleOptions | any;
10393
+ tooltip?: string | any[] | ((...params: any[]) => any);
10394
+ tooltipOptions?: Tooltip.StyleOptions | any;
10395
+ contextmenuItems?: any;
10396
+ id?: string | number;
10397
+ name?: string;
10398
+ show?: boolean;
10399
+ eventParent?: BaseClass | boolean;
10400
+ allowDrillPick?: boolean | ((...params: any[]) => any);
10401
+ flyTo?: boolean;
10402
+ flyToOptions?: any;
10403
+ });
10404
+ /**
10405
+ * 井下深度(单位:米)
10406
+ */
10407
+ diffHeight: number;
10408
+ }
10409
+
9952
10410
  declare namespace PlaneEntity {
9953
10411
  /**
9954
10412
  * 平面 支持的样式信息
@@ -10039,8 +10497,10 @@ declare namespace PlaneEntity {
10039
10497
  * @param [options.show = true] - 矢量数据是否显示
10040
10498
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
10041
10499
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
10500
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
10501
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。 @extends {BasePointEntity}
10042
10502
  */
10043
- declare class PlaneEntity extends BasePointEntity {
10503
+ declare class PlaneEntity {
10044
10504
  constructor(options: {
10045
10505
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
10046
10506
  style: PlaneEntity.StyleOptions | any;
@@ -10063,6 +10523,8 @@ declare class PlaneEntity extends BasePointEntity {
10063
10523
  show?: boolean;
10064
10524
  eventParent?: BaseClass | boolean;
10065
10525
  allowDrillPick?: boolean | ((...params: any[]) => any);
10526
+ flyTo?: boolean;
10527
+ flyToOptions?: any;
10066
10528
  });
10067
10529
  /**
10068
10530
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -10163,6 +10625,8 @@ declare namespace PointEntity {
10163
10625
  * @param [options.show = true] - 矢量数据是否显示
10164
10626
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
10165
10627
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
10628
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
10629
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
10166
10630
  */
10167
10631
  declare class PointEntity extends BasePointEntity {
10168
10632
  constructor(options: {
@@ -10196,6 +10660,8 @@ declare class PointEntity extends BasePointEntity {
10196
10660
  show?: boolean;
10197
10661
  eventParent?: BaseClass | boolean;
10198
10662
  allowDrillPick?: boolean | ((...params: any[]) => any);
10663
+ flyTo?: boolean;
10664
+ flyToOptions?: any;
10199
10665
  });
10200
10666
  /**
10201
10667
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -10220,7 +10686,8 @@ declare namespace PolygonEntity {
10220
10686
  * @property [outlineColor = "#ffffff"] - 边框颜色
10221
10687
  * @property [outlineOpacity = 0.6] - 边框透明度
10222
10688
  * @property [outlineStyle] - 边框的完整自定义样式,会覆盖outlineWidth、outlineColor等参数。
10223
- * // * @property {Boolean} [outlineStyle.closure = true] 边线是否闭合
10689
+ * // * @property {boolean} [outlineStyle.closure = true] 边线是否闭合
10690
+ * @property [textureCoordinates] - 纹理坐标,是Cartesian2的UV坐标数组的多边形层次结构。对贴地对象无效。
10224
10691
  * @property [distanceDisplayCondition = false] - 是否按视距显示 或 指定此框将显示在与摄像机的多大距离。
10225
10692
  * @property [distanceDisplayCondition_far = 100000] - 最大距离
10226
10693
  * @property [distanceDisplayCondition_near = 0] - 最小距离
@@ -10244,8 +10711,8 @@ declare namespace PolygonEntity {
10244
10711
  * @property [addHeight = 0] - 在现有坐标基础上增加的高度值,或数组指定每个点增加的高度(常用于图层中配置)
10245
10712
  * @property [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
10246
10713
  * @property [label] - 支持附带文字的显示,额外支持:<br />
10247
- * // * @property {String|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
10248
- * // * @property {Boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
10714
+ * // * @property {string|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
10715
+ * // * @property {boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
10249
10716
  */
10250
10717
  type StyleOptions = any | {
10251
10718
  fill?: boolean;
@@ -10262,6 +10729,7 @@ declare namespace PolygonEntity {
10262
10729
  outlineColor?: string | Cesium.Color;
10263
10730
  outlineOpacity?: number;
10264
10731
  outlineStyle?: PolylineEntity.StyleOptions | any;
10732
+ textureCoordinates?: Cesium.PolygonHierarchy;
10265
10733
  distanceDisplayCondition?: boolean | Cesium.DistanceDisplayCondition;
10266
10734
  distanceDisplayCondition_far?: number;
10267
10735
  distanceDisplayCondition_near?: number;
@@ -10315,6 +10783,8 @@ declare namespace PolygonEntity {
10315
10783
  * @param [options.show = true] - 矢量数据是否显示
10316
10784
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
10317
10785
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
10786
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
10787
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
10318
10788
  */
10319
10789
  declare class PolygonEntity extends BasePolyEntity {
10320
10790
  constructor(options: {
@@ -10342,6 +10812,8 @@ declare class PolygonEntity extends BasePolyEntity {
10342
10812
  show?: boolean;
10343
10813
  eventParent?: BaseClass | boolean;
10344
10814
  allowDrillPick?: boolean | ((...params: any[]) => any);
10815
+ flyTo?: boolean;
10816
+ flyToOptions?: any;
10345
10817
  });
10346
10818
  /**
10347
10819
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -10435,9 +10907,9 @@ declare namespace PolylineEntity {
10435
10907
  * @property [addHeight = 0] - 在现有坐标基础上增加的高度值,或数组指定每个点增加的高度(常用于图层中配置)
10436
10908
  * @property [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
10437
10909
  * @property [label] - 支持附带文字的显示,额外支持:<br />
10438
- * // * @property {String} [label.text = "文字"] 文本内容,换行可以用换行符'\n'。
10439
- * // * @property {String|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
10440
- * // * @property {Boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
10910
+ * // * @property {string} [label.text = "文字"] 文本内容,换行可以用换行符'\n'。
10911
+ * // * @property {string|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
10912
+ * // * @property {boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
10441
10913
  */
10442
10914
  type StyleOptions = any | {
10443
10915
  materialType?: string;
@@ -10499,6 +10971,8 @@ declare namespace PolylineEntity {
10499
10971
  * @param [options.show = true] - 矢量数据是否显示
10500
10972
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
10501
10973
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
10974
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
10975
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
10502
10976
  */
10503
10977
  declare class PolylineEntity extends BasePolyEntity {
10504
10978
  constructor(options: {
@@ -10526,6 +11000,8 @@ declare class PolylineEntity extends BasePolyEntity {
10526
11000
  show?: boolean;
10527
11001
  eventParent?: BaseClass | boolean;
10528
11002
  allowDrillPick?: boolean | ((...params: any[]) => any);
11003
+ flyTo?: boolean;
11004
+ flyToOptions?: any;
10529
11005
  });
10530
11006
  /**
10531
11007
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -10625,6 +11101,8 @@ declare namespace PolylineVolumeEntity {
10625
11101
  * @param [options.show = true] - 矢量数据是否显示
10626
11102
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
10627
11103
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
11104
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
11105
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
10628
11106
  */
10629
11107
  declare class PolylineVolumeEntity extends BasePolyEntity {
10630
11108
  constructor(options: {
@@ -10651,6 +11129,8 @@ declare class PolylineVolumeEntity extends BasePolyEntity {
10651
11129
  show?: boolean;
10652
11130
  eventParent?: BaseClass | boolean;
10653
11131
  allowDrillPick?: boolean | ((...params: any[]) => any);
11132
+ flyTo?: boolean;
11133
+ flyToOptions?: any;
10654
11134
  });
10655
11135
  /**
10656
11136
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -10763,6 +11243,8 @@ declare namespace RectangleEntity {
10763
11243
  * @param [options.show = true] - 矢量数据是否显示
10764
11244
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
10765
11245
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
11246
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
11247
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
10766
11248
  */
10767
11249
  declare class RectangleEntity extends BasePolyEntity {
10768
11250
  constructor(options: {
@@ -10790,6 +11272,8 @@ declare class RectangleEntity extends BasePolyEntity {
10790
11272
  show?: boolean;
10791
11273
  eventParent?: BaseClass | boolean;
10792
11274
  allowDrillPick?: boolean | ((...params: any[]) => any);
11275
+ flyTo?: boolean;
11276
+ flyToOptions?: any;
10793
11277
  });
10794
11278
  /**
10795
11279
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -11003,8 +11487,10 @@ declare namespace RectangularSensor {
11003
11487
  * @param [options.show = true] - 矢量数据是否显示
11004
11488
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11005
11489
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
11490
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
11491
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。 @extends {BasePointEntity}
11006
11492
  */
11007
- declare class RectangularSensor extends BasePointEntity {
11493
+ declare class RectangularSensor {
11008
11494
  constructor(options: {
11009
11495
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
11010
11496
  style: RectangularSensor.StyleOptions | any;
@@ -11027,6 +11513,8 @@ declare class RectangularSensor extends BasePointEntity {
11027
11513
  show?: boolean;
11028
11514
  eventParent?: BaseClass | boolean;
11029
11515
  allowDrillPick?: boolean | ((...params: any[]) => any);
11516
+ flyTo?: boolean;
11517
+ flyToOptions?: any;
11030
11518
  });
11031
11519
  /**
11032
11520
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -11049,7 +11537,8 @@ declare namespace Video2D {
11049
11537
  * @property [pitch = 0] - 俯仰角(度数值,0-360度)
11050
11538
  * @property [roll = 0] - 翻滚角(度数值,0-360度)
11051
11539
  * @property [opacity = 1.0] - 透明度
11052
- * @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后。
11540
+ * @property [flipx = false] - 是否X方向翻转视频
11541
+ * @property [flipy = false] - 是否Y方向翻转视频
11053
11542
  * @property [stRotation = 0] - 多边形纹理的角度(弧度值),正北为0,逆时针旋转
11054
11543
  * @property [stRotationDegree = 0] - 多边形纹理的角度(度数值,0-360度),与stRotation二选一
11055
11544
  * @property [outline = false] - 是否边框
@@ -11072,7 +11561,8 @@ declare namespace Video2D {
11072
11561
  pitch?: number;
11073
11562
  roll?: number;
11074
11563
  opacity?: number;
11075
- material?: Cesium.MaterialProperty | BaseMaterialProperty | Cesium.Color;
11564
+ flipx?: boolean;
11565
+ flipy?: boolean;
11076
11566
  stRotation?: number;
11077
11567
  stRotationDegree?: number;
11078
11568
  outline?: boolean;
@@ -11107,6 +11597,8 @@ declare namespace Video2D {
11107
11597
  * @param [options.show = true] - 矢量数据是否显示
11108
11598
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11109
11599
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
11600
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
11601
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11110
11602
  */
11111
11603
  declare class Video2D extends PolygonEntity {
11112
11604
  constructor(options: {
@@ -11124,6 +11616,8 @@ declare class Video2D extends PolygonEntity {
11124
11616
  show?: boolean;
11125
11617
  eventParent?: BaseClass | boolean;
11126
11618
  allowDrillPick?: boolean | ((...params: any[]) => any);
11619
+ flyTo?: boolean;
11620
+ flyToOptions?: any;
11127
11621
  });
11128
11622
  /**
11129
11623
  * 位置坐标 (笛卡尔坐标), 赋值时可以传入LatLngPoint对象
@@ -11172,6 +11666,10 @@ declare class Video2D extends PolygonEntity {
11172
11666
  * 混合系数0-1
11173
11667
  */
11174
11668
  opacity: number;
11669
+ /**
11670
+ * 是否X方向翻转视频
11671
+ */
11672
+ flipx: boolean;
11175
11673
  /**
11176
11674
  * 是否显示视椎体框线
11177
11675
  */
@@ -11232,8 +11730,8 @@ declare namespace WallEntity {
11232
11730
  * @property [addHeight] - 在现有坐标基础上增加的高度值(常用于图层中配置),也支持字符串模版配置
11233
11731
  * @property [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
11234
11732
  * @property [label] - 支持附带文字的显示,额外支持:<br />
11235
- * // * @property {String|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
11236
- * // * @property {Boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
11733
+ * // * @property {string|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
11734
+ * // * @property {boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
11237
11735
  */
11238
11736
  type StyleOptions = any | {
11239
11737
  diffHeight?: number;
@@ -11290,6 +11788,8 @@ declare namespace WallEntity {
11290
11788
  * @param [options.show = true] - 矢量数据是否显示
11291
11789
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11292
11790
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
11791
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
11792
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11293
11793
  */
11294
11794
  declare class WallEntity extends BasePolyEntity {
11295
11795
  constructor(options: {
@@ -11316,6 +11816,8 @@ declare class WallEntity extends BasePolyEntity {
11316
11816
  show?: boolean;
11317
11817
  eventParent?: BaseClass | boolean;
11318
11818
  allowDrillPick?: boolean | ((...params: any[]) => any);
11819
+ flyTo?: boolean;
11820
+ flyToOptions?: any;
11319
11821
  });
11320
11822
  /**
11321
11823
  * 矢量数据对应的 Cesium内部对象的具体类型对象
@@ -11349,6 +11851,8 @@ declare class WallEntity extends BasePolyEntity {
11349
11851
  * @param [options.show = true] - 矢量数据是否显示
11350
11852
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11351
11853
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
11854
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
11855
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11352
11856
  */
11353
11857
  declare class AttackArrow extends PolygonEntity {
11354
11858
  constructor(options: {
@@ -11371,6 +11875,8 @@ declare class AttackArrow extends PolygonEntity {
11371
11875
  show?: boolean;
11372
11876
  eventParent?: BaseClass | boolean;
11373
11877
  allowDrillPick?: boolean | ((...params: any[]) => any);
11878
+ flyTo?: boolean;
11879
+ flyToOptions?: any;
11374
11880
  });
11375
11881
  }
11376
11882
 
@@ -11396,6 +11902,8 @@ declare class AttackArrow extends PolygonEntity {
11396
11902
  * @param [options.show = true] - 矢量数据是否显示
11397
11903
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11398
11904
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
11905
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
11906
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11399
11907
  */
11400
11908
  declare class AttackArrowPW extends PolygonEntity {
11401
11909
  constructor(options: {
@@ -11418,6 +11926,8 @@ declare class AttackArrowPW extends PolygonEntity {
11418
11926
  show?: boolean;
11419
11927
  eventParent?: BaseClass | boolean;
11420
11928
  allowDrillPick?: boolean | ((...params: any[]) => any);
11929
+ flyTo?: boolean;
11930
+ flyToOptions?: any;
11421
11931
  });
11422
11932
  /**
11423
11933
  * 计算当前军标对象的边界坐标点
@@ -11450,6 +11960,8 @@ declare class AttackArrowPW extends PolygonEntity {
11450
11960
  * @param [options.show = true] - 矢量数据是否显示
11451
11961
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11452
11962
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
11963
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
11964
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11453
11965
  */
11454
11966
  declare class AttackArrowYW extends PolygonEntity {
11455
11967
  constructor(options: {
@@ -11472,6 +11984,8 @@ declare class AttackArrowYW extends PolygonEntity {
11472
11984
  show?: boolean;
11473
11985
  eventParent?: BaseClass | boolean;
11474
11986
  allowDrillPick?: boolean | ((...params: any[]) => any);
11987
+ flyTo?: boolean;
11988
+ flyToOptions?: any;
11475
11989
  });
11476
11990
  /**
11477
11991
  * 计算当前军标对象的边界坐标点
@@ -11504,6 +12018,8 @@ declare class AttackArrowYW extends PolygonEntity {
11504
12018
  * @param [options.show = true] - 矢量数据是否显示
11505
12019
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11506
12020
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12021
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12022
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11507
12023
  */
11508
12024
  declare class CloseVurve extends PolygonEntity {
11509
12025
  constructor(options: {
@@ -11526,6 +12042,8 @@ declare class CloseVurve extends PolygonEntity {
11526
12042
  show?: boolean;
11527
12043
  eventParent?: BaseClass | boolean;
11528
12044
  allowDrillPick?: boolean | ((...params: any[]) => any);
12045
+ flyTo?: boolean;
12046
+ flyToOptions?: any;
11529
12047
  });
11530
12048
  /**
11531
12049
  * 计算当前军标对象的边界坐标点
@@ -11558,6 +12076,8 @@ declare class CloseVurve extends PolygonEntity {
11558
12076
  * @param [options.show = true] - 矢量数据是否显示
11559
12077
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11560
12078
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12079
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12080
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11561
12081
  */
11562
12082
  declare class DoubleArrow extends PolygonEntity {
11563
12083
  constructor(options: {
@@ -11580,6 +12100,8 @@ declare class DoubleArrow extends PolygonEntity {
11580
12100
  show?: boolean;
11581
12101
  eventParent?: BaseClass | boolean;
11582
12102
  allowDrillPick?: boolean | ((...params: any[]) => any);
12103
+ flyTo?: boolean;
12104
+ flyToOptions?: any;
11583
12105
  });
11584
12106
  /**
11585
12107
  * 计算当前军标对象的边界坐标点
@@ -11624,6 +12146,8 @@ declare class EditSector extends EditPolygon {
11624
12146
  * @param [options.show = true] - 矢量数据是否显示
11625
12147
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11626
12148
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12149
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12150
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11627
12151
  */
11628
12152
  declare class FineArrow extends PolygonEntity {
11629
12153
  constructor(options: {
@@ -11646,6 +12170,8 @@ declare class FineArrow extends PolygonEntity {
11646
12170
  show?: boolean;
11647
12171
  eventParent?: BaseClass | boolean;
11648
12172
  allowDrillPick?: boolean | ((...params: any[]) => any);
12173
+ flyTo?: boolean;
12174
+ flyToOptions?: any;
11649
12175
  });
11650
12176
  /**
11651
12177
  * 计算当前军标对象的边界坐标点
@@ -11678,6 +12204,8 @@ declare class FineArrow extends PolygonEntity {
11678
12204
  * @param [options.show = true] - 矢量数据是否显示
11679
12205
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11680
12206
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12207
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12208
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11681
12209
  */
11682
12210
  declare class FineArrowYW extends PolygonEntity {
11683
12211
  constructor(options: {
@@ -11700,6 +12228,8 @@ declare class FineArrowYW extends PolygonEntity {
11700
12228
  show?: boolean;
11701
12229
  eventParent?: BaseClass | boolean;
11702
12230
  allowDrillPick?: boolean | ((...params: any[]) => any);
12231
+ flyTo?: boolean;
12232
+ flyToOptions?: any;
11703
12233
  });
11704
12234
  /**
11705
12235
  * 计算当前军标对象的边界坐标点
@@ -11732,6 +12262,8 @@ declare class FineArrowYW extends PolygonEntity {
11732
12262
  * @param [options.show = true] - 矢量数据是否显示
11733
12263
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11734
12264
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12265
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12266
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11735
12267
  */
11736
12268
  declare class GatheringPlace extends PolygonEntity {
11737
12269
  constructor(options: {
@@ -11754,6 +12286,8 @@ declare class GatheringPlace extends PolygonEntity {
11754
12286
  show?: boolean;
11755
12287
  eventParent?: BaseClass | boolean;
11756
12288
  allowDrillPick?: boolean | ((...params: any[]) => any);
12289
+ flyTo?: boolean;
12290
+ flyToOptions?: any;
11757
12291
  });
11758
12292
  /**
11759
12293
  * 计算当前军标对象的边界坐标点
@@ -11786,6 +12320,8 @@ declare class GatheringPlace extends PolygonEntity {
11786
12320
  * @param [options.show = true] - 矢量数据是否显示
11787
12321
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11788
12322
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12323
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12324
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11789
12325
  */
11790
12326
  declare class IsosTriangle extends PolygonEntity {
11791
12327
  constructor(options: {
@@ -11808,6 +12344,8 @@ declare class IsosTriangle extends PolygonEntity {
11808
12344
  show?: boolean;
11809
12345
  eventParent?: BaseClass | boolean;
11810
12346
  allowDrillPick?: boolean | ((...params: any[]) => any);
12347
+ flyTo?: boolean;
12348
+ flyToOptions?: any;
11811
12349
  });
11812
12350
  /**
11813
12351
  * 计算当前矢量对象的边界坐标点
@@ -11840,6 +12378,8 @@ declare class IsosTriangle extends PolygonEntity {
11840
12378
  * @param [options.show = true] - 矢量数据是否显示
11841
12379
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11842
12380
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12381
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12382
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11843
12383
  */
11844
12384
  declare class Lune extends PolygonEntity {
11845
12385
  constructor(options: {
@@ -11862,6 +12402,8 @@ declare class Lune extends PolygonEntity {
11862
12402
  show?: boolean;
11863
12403
  eventParent?: BaseClass | boolean;
11864
12404
  allowDrillPick?: boolean | ((...params: any[]) => any);
12405
+ flyTo?: boolean;
12406
+ flyToOptions?: any;
11865
12407
  });
11866
12408
  /**
11867
12409
  * 计算当前军标对象的边界坐标点
@@ -11897,6 +12439,8 @@ declare class Lune extends PolygonEntity {
11897
12439
  * @param [options.show = true] - 矢量数据是否显示
11898
12440
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11899
12441
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12442
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12443
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11900
12444
  */
11901
12445
  declare class Regular extends PolygonEntity {
11902
12446
  constructor(options: {
@@ -11923,6 +12467,8 @@ declare class Regular extends PolygonEntity {
11923
12467
  show?: boolean;
11924
12468
  eventParent?: BaseClass | boolean;
11925
12469
  allowDrillPick?: boolean | ((...params: any[]) => any);
12470
+ flyTo?: boolean;
12471
+ flyToOptions?: any;
11926
12472
  });
11927
12473
  /**
11928
12474
  * 编辑处理类
@@ -11974,6 +12520,8 @@ declare class Regular extends PolygonEntity {
11974
12520
  * @param [options.show = true] - 矢量数据是否显示
11975
12521
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
11976
12522
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12523
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12524
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
11977
12525
  */
11978
12526
  declare class Sector extends PolygonEntity {
11979
12527
  constructor(options: {
@@ -12001,6 +12549,8 @@ declare class Sector extends PolygonEntity {
12001
12549
  show?: boolean;
12002
12550
  eventParent?: BaseClass | boolean;
12003
12551
  allowDrillPick?: boolean | ((...params: any[]) => any);
12552
+ flyTo?: boolean;
12553
+ flyToOptions?: any;
12004
12554
  });
12005
12555
  /**
12006
12556
  * 编辑处理类
@@ -12050,6 +12600,8 @@ declare class Sector extends PolygonEntity {
12050
12600
  * @param [options.show = true] - 矢量数据是否显示
12051
12601
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12052
12602
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12603
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12604
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12053
12605
  */
12054
12606
  declare class StraightArrow extends PolygonEntity {
12055
12607
  constructor(options: {
@@ -12072,6 +12624,8 @@ declare class StraightArrow extends PolygonEntity {
12072
12624
  show?: boolean;
12073
12625
  eventParent?: BaseClass | boolean;
12074
12626
  allowDrillPick?: boolean | ((...params: any[]) => any);
12627
+ flyTo?: boolean;
12628
+ flyToOptions?: any;
12075
12629
  });
12076
12630
  /**
12077
12631
  * 计算当前军标对象的边界坐标点
@@ -12112,6 +12666,8 @@ declare class StraightArrow extends PolygonEntity {
12112
12666
  * @param [options.show = true] - 矢量数据是否显示
12113
12667
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12114
12668
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12669
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12670
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12115
12671
  */
12116
12672
  declare class AngleMeasure extends PolylineEntity {
12117
12673
  constructor(options: {
@@ -12141,6 +12697,8 @@ declare class AngleMeasure extends PolylineEntity {
12141
12697
  show?: boolean;
12142
12698
  eventParent?: BaseClass | boolean;
12143
12699
  allowDrillPick?: boolean | ((...params: any[]) => any);
12700
+ flyTo?: boolean;
12701
+ flyToOptions?: any;
12144
12702
  });
12145
12703
  /**
12146
12704
  * 测量结果
@@ -12183,6 +12741,8 @@ declare class AngleMeasure extends PolylineEntity {
12183
12741
  * @param [options.show = true] - 矢量数据是否显示
12184
12742
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12185
12743
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12744
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12745
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12186
12746
  */
12187
12747
  declare class AreaMeasure extends PolygonEntity {
12188
12748
  constructor(options: {
@@ -12211,6 +12771,8 @@ declare class AreaMeasure extends PolygonEntity {
12211
12771
  show?: boolean;
12212
12772
  eventParent?: BaseClass | boolean;
12213
12773
  allowDrillPick?: boolean | ((...params: any[]) => any);
12774
+ flyTo?: boolean;
12775
+ flyToOptions?: any;
12214
12776
  });
12215
12777
  /**
12216
12778
  * 测量结果
@@ -12259,6 +12821,8 @@ declare class AreaMeasure extends PolygonEntity {
12259
12821
  * @param [options.show = true] - 矢量数据是否显示
12260
12822
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12261
12823
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12824
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12825
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12262
12826
  */
12263
12827
  declare class AreaSurfaceMeasure extends AreaMeasure {
12264
12828
  constructor(options: {
@@ -12287,6 +12851,8 @@ declare class AreaSurfaceMeasure extends AreaMeasure {
12287
12851
  show?: boolean;
12288
12852
  eventParent?: BaseClass | boolean;
12289
12853
  allowDrillPick?: boolean | ((...params: any[]) => any);
12854
+ flyTo?: boolean;
12855
+ flyToOptions?: any;
12290
12856
  });
12291
12857
  }
12292
12858
 
@@ -12319,6 +12885,8 @@ declare class AreaSurfaceMeasure extends AreaMeasure {
12319
12885
  * @param [options.show = true] - 矢量数据是否显示
12320
12886
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12321
12887
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12888
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12889
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12322
12890
  */
12323
12891
  declare class DistanceMeasure extends PolylineEntity {
12324
12892
  constructor(options: {
@@ -12347,6 +12915,8 @@ declare class DistanceMeasure extends PolylineEntity {
12347
12915
  show?: boolean;
12348
12916
  eventParent?: BaseClass | boolean;
12349
12917
  allowDrillPick?: boolean | ((...params: any[]) => any);
12918
+ flyTo?: boolean;
12919
+ flyToOptions?: any;
12350
12920
  });
12351
12921
  /**
12352
12922
  * 测量结果
@@ -12389,6 +12959,8 @@ declare class DistanceMeasure extends PolylineEntity {
12389
12959
  * @param [options.show = true] - 矢量数据是否显示
12390
12960
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12391
12961
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
12962
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
12963
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12392
12964
  */
12393
12965
  declare class DistanceSurfaceMeasure extends DistanceMeasure {
12394
12966
  constructor(options: {
@@ -12417,6 +12989,8 @@ declare class DistanceSurfaceMeasure extends DistanceMeasure {
12417
12989
  show?: boolean;
12418
12990
  eventParent?: BaseClass | boolean;
12419
12991
  allowDrillPick?: boolean | ((...params: any[]) => any);
12992
+ flyTo?: boolean;
12993
+ flyToOptions?: any;
12420
12994
  });
12421
12995
  }
12422
12996
 
@@ -12449,6 +13023,8 @@ declare class DistanceSurfaceMeasure extends DistanceMeasure {
12449
13023
  * @param [options.show = true] - 矢量数据是否显示
12450
13024
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12451
13025
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
13026
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
13027
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12452
13028
  */
12453
13029
  declare class HeightMeasure extends PolylineEntity {
12454
13030
  constructor(options: {
@@ -12477,6 +13053,8 @@ declare class HeightMeasure extends PolylineEntity {
12477
13053
  show?: boolean;
12478
13054
  eventParent?: BaseClass | boolean;
12479
13055
  allowDrillPick?: boolean | ((...params: any[]) => any);
13056
+ flyTo?: boolean;
13057
+ flyToOptions?: any;
12480
13058
  });
12481
13059
  /**
12482
13060
  * 测量结果
@@ -12519,6 +13097,8 @@ declare class HeightMeasure extends PolylineEntity {
12519
13097
  * @param [options.show = true] - 矢量数据是否显示
12520
13098
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12521
13099
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
13100
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
13101
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12522
13102
  */
12523
13103
  declare class HeightTriangleMeasure extends HeightMeasure {
12524
13104
  constructor(options: {
@@ -12547,6 +13127,8 @@ declare class HeightTriangleMeasure extends HeightMeasure {
12547
13127
  show?: boolean;
12548
13128
  eventParent?: BaseClass | boolean;
12549
13129
  allowDrillPick?: boolean | ((...params: any[]) => any);
13130
+ flyTo?: boolean;
13131
+ flyToOptions?: any;
12550
13132
  });
12551
13133
  /**
12552
13134
  * 更新测量结果的文本
@@ -12581,6 +13163,8 @@ declare class HeightTriangleMeasure extends HeightMeasure {
12581
13163
  * @param [options.show = true] - 矢量数据是否显示
12582
13164
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12583
13165
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
13166
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
13167
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12584
13168
  */
12585
13169
  declare class PointMeasure extends PointEntity {
12586
13170
  constructor(options: {
@@ -12605,6 +13189,8 @@ declare class PointMeasure extends PointEntity {
12605
13189
  show?: boolean;
12606
13190
  eventParent?: BaseClass | boolean;
12607
13191
  allowDrillPick?: boolean | ((...params: any[]) => any);
13192
+ flyTo?: boolean;
13193
+ flyToOptions?: any;
12608
13194
  });
12609
13195
  }
12610
13196
 
@@ -12638,6 +13224,8 @@ declare class PointMeasure extends PointEntity {
12638
13224
  * @param [options.show = true] - 矢量数据是否显示
12639
13225
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12640
13226
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
13227
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
13228
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12641
13229
  */
12642
13230
  declare class SectionMeasure extends DistanceMeasure {
12643
13231
  constructor(options: {
@@ -12667,9 +13255,121 @@ declare class SectionMeasure extends DistanceMeasure {
12667
13255
  show?: boolean;
12668
13256
  eventParent?: BaseClass | boolean;
12669
13257
  allowDrillPick?: boolean | ((...params: any[]) => any);
13258
+ flyTo?: boolean;
13259
+ flyToOptions?: any;
12670
13260
  });
12671
13261
  }
12672
13262
 
13263
+ /**
13264
+ * 基于深度图的 体积量算对象(方量分析),
13265
+ * 非直接调用,由 Measure 类统一创建及管理。<br />
13266
+ *
13267
+ * 注意:<br />
13268
+ * 1. 需要地形和模型等需要分析区域对应的数据加载完成后才能分析。<br />
13269
+ * 2. 如果有遮挡了分析区域的任何矢量对象,都需要分析前隐藏下,分析结束后再改回显示。<br />
13270
+ *
13271
+ * 说明:<br />
13272
+ * 1. 挖方量: 计算“基准面”到地表之间的凸出部分进行挖掉的体积。<br />
13273
+ * 2. 填方量:计算“基准面”与“墙底部”之间的缺少部分进行填平的体积。
13274
+ * @param options - 参数对象,包括以下:
13275
+ * @param options.style - 基准面样式信息
13276
+ * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13277
+ * @param [options.showPoly = true] - 是否显示基准面
13278
+ * @param [options.showWall = false] - 是否显示围墙面
13279
+ * @param [options.polygonWallStyle] - 围墙面的样式
13280
+ * @param [options.showBox = true] - 是否显示填挖盒子
13281
+ * @param [options.fillColor = Cesium.Color.YELLOW.withAlpha(0.5)] - 填方盒子的颜色
13282
+ * @param [options.cutColor = Cesium.Color.RED.withAlpha(0.5)] - 挖方盒子的颜色
13283
+ * @param [options.offsetHeight = 0] - 盒子偏移显示的高度值,可以将盒子显示在空中来展示
13284
+ * @param [options.label] - 测量结果文本的样式
13285
+ * @param [options.showFillVolume = true] - 是否显示填方体积结果文本
13286
+ * @param [options.fillVolumeName = '填方体积'] - 填方体积结果的名称
13287
+ * @param [options.showDigVolume = true] - 是否显示挖方体积结果文本
13288
+ * @param [options.digVolumeName = '挖方体积'] - 挖方体积结果的名称
13289
+ * @param [options.showArea = true] - 是否显示横切面积结果文本
13290
+ * @param [options.areaName = '横切面积'] - 横切面积结果的名称
13291
+ * @param [options.heightLabel = true] - 是否显示各边界点高度值文本
13292
+ * @param [options.offsetLabel = false] - 是否显示各边界点高度差文本
13293
+ * @param [options.labelHeight] - 各边界点高度结果文本的样式
13294
+ * @param [options.decimal = 2] - 显示的 数值 文本中保留的小数位
13295
+ * @param [options.has3dtiles] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
13296
+ * @param [options.exact = true] - 是否进行精确计算, 传false时是否快速概略计算方式,该方式计算精度较低,但计算速度快,仅能计算在当前视域内坐标的高度
13297
+ * @param [options.id = createGuid()] - 矢量数据id标识
13298
+ * @param [options.name = ''] - 矢量数据名称
13299
+ * @param [options.show = true] - 矢量数据是否显示
13300
+ * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
13301
+ * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
13302
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
13303
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
13304
+ */
13305
+ declare class VolumeDepthMeasure extends AreaMeasure {
13306
+ constructor(options: {
13307
+ style: PolygonEntity.StyleOptions | any;
13308
+ attr?: any;
13309
+ showPoly?: boolean;
13310
+ showWall?: boolean;
13311
+ polygonWallStyle?: PolygonEntity.StyleOptions | any;
13312
+ showBox?: boolean;
13313
+ fillColor?: string | Cesium.Color;
13314
+ cutColor?: string | Cesium.Color;
13315
+ offsetHeight?: number;
13316
+ label?: LabelEntity.StyleOptions | any;
13317
+ showFillVolume?: boolean;
13318
+ fillVolumeName?: string;
13319
+ showDigVolume?: boolean;
13320
+ digVolumeName?: string;
13321
+ showArea?: boolean;
13322
+ areaName?: string;
13323
+ heightLabel?: boolean;
13324
+ offsetLabel?: boolean;
13325
+ labelHeight?: LabelEntity.StyleOptions | any;
13326
+ decimal?: number;
13327
+ has3dtiles?: boolean;
13328
+ exact?: boolean;
13329
+ id?: string | number;
13330
+ name?: string;
13331
+ show?: boolean;
13332
+ eventParent?: BaseClass | boolean;
13333
+ allowDrillPick?: boolean | ((...params: any[]) => any);
13334
+ flyTo?: boolean;
13335
+ flyToOptions?: any;
13336
+ });
13337
+ /**
13338
+ * 面内的最高地表高度
13339
+ */
13340
+ readonly polygonMaxHeight: number;
13341
+ /**
13342
+ * 基准面 高度,
13343
+ * 1. 挖方量: 计算“基准面”到地表之间的凸出部分进行挖掉的体积。<br />
13344
+ * 2. 填方量:计算“基准面”与“墙底部”之间的缺少部分进行填平的体积。
13345
+ */
13346
+ height: number;
13347
+ /**
13348
+ * 底部高度,
13349
+ * 会影响 填方量:计算“基准面高度”与“底部高度”之间的缺少部分进行填平的体积。
13350
+ */
13351
+ minHeight: number;
13352
+ /**
13353
+ * 最高高度,对应墙的高度,
13354
+ * 不影响测量结果,只是显示效果的区别。
13355
+ */
13356
+ maxHeight: number;
13357
+ /**
13358
+ * 是否显示填挖盒子
13359
+ */
13360
+ showBox: boolean;
13361
+ /**
13362
+ * 更新测量结果的文本
13363
+ * @param unit - 计量单位,{@link MeasureUtil#formatArea} 可选值:计量单位,可选值:auto、m、km、mu、ha 。auto时根据面积值自动选用m或km
13364
+ * @returns 无
13365
+ */
13366
+ updateText(unit: string): void;
13367
+ /**
13368
+ * 是否可以编辑
13369
+ */
13370
+ hasEdit: boolean;
13371
+ }
13372
+
12673
13373
  /**
12674
13374
  * 体积量算对象(方量分析),
12675
13375
  * 非直接调用,由 Measure 类统一创建及管理。<br />
@@ -12698,6 +13398,8 @@ declare class SectionMeasure extends DistanceMeasure {
12698
13398
  * @param [options.show = true] - 矢量数据是否显示
12699
13399
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12700
13400
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
13401
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
13402
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12701
13403
  */
12702
13404
  declare class VolumeMeasure extends AreaMeasure {
12703
13405
  constructor(options: {
@@ -12722,6 +13424,8 @@ declare class VolumeMeasure extends AreaMeasure {
12722
13424
  show?: boolean;
12723
13425
  eventParent?: BaseClass | boolean;
12724
13426
  allowDrillPick?: boolean | ((...params: any[]) => any);
13427
+ flyTo?: boolean;
13428
+ flyToOptions?: any;
12725
13429
  });
12726
13430
  /**
12727
13431
  * 面内的最高地表高度
@@ -12791,6 +13495,8 @@ declare class VolumeMeasure extends AreaMeasure {
12791
13495
  * @param [options.show = true] - 矢量数据是否显示
12792
13496
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12793
13497
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
13498
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
13499
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12794
13500
  */
12795
13501
  declare class BasePointPrimitive extends BasePrimitive {
12796
13502
  constructor(options: {
@@ -12827,6 +13533,8 @@ declare class BasePointPrimitive extends BasePrimitive {
12827
13533
  show?: boolean;
12828
13534
  eventParent?: BaseClass | boolean;
12829
13535
  allowDrillPick?: boolean | ((...params: any[]) => any);
13536
+ flyTo?: boolean;
13537
+ flyToOptions?: any;
12830
13538
  });
12831
13539
  /**
12832
13540
  * 位置坐标 (笛卡尔坐标), 赋值时可以传入LatLngPoint对象
@@ -12958,6 +13666,8 @@ declare class BasePointPrimitive extends BasePrimitive {
12958
13666
  * @param [options.show = true] - 矢量数据是否显示
12959
13667
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
12960
13668
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
13669
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
13670
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
12961
13671
  */
12962
13672
  declare class BasePolyPrimitive extends BasePrimitive {
12963
13673
  constructor(options: {
@@ -12986,6 +13696,8 @@ declare class BasePolyPrimitive extends BasePrimitive {
12986
13696
  show?: boolean;
12987
13697
  eventParent?: BaseClass | boolean;
12988
13698
  allowDrillPick?: boolean | ((...params: any[]) => any);
13699
+ flyTo?: boolean;
13700
+ flyToOptions?: any;
12989
13701
  });
12990
13702
  /**
12991
13703
  * 中心点坐标 (笛卡尔坐标)
@@ -13083,6 +13795,8 @@ declare class BasePolyPrimitive extends BasePrimitive {
13083
13795
  * @param [options.show = true] - 矢量数据是否显示
13084
13796
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
13085
13797
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
13798
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
13799
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
13086
13800
  */
13087
13801
  declare class BasePrimitive extends BaseGraphic {
13088
13802
  constructor(options: {
@@ -13112,6 +13826,8 @@ declare class BasePrimitive extends BaseGraphic {
13112
13826
  show?: boolean;
13113
13827
  eventParent?: BaseClass | boolean;
13114
13828
  allowDrillPick?: boolean | ((...params: any[]) => any);
13829
+ flyTo?: boolean;
13830
+ flyToOptions?: any;
13115
13831
  });
13116
13832
  /**
13117
13833
  * 当加载primitive数据的内部Cesium容器
@@ -13230,6 +13946,8 @@ declare class BasePrimitive extends BaseGraphic {
13230
13946
  * @param [options.show = true] - 矢量数据是否显示
13231
13947
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
13232
13948
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
13949
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
13950
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
13233
13951
  */
13234
13952
  declare class BillboardPrimitive extends BasePointPrimitive {
13235
13953
  constructor(options: {
@@ -13251,6 +13969,8 @@ declare class BillboardPrimitive extends BasePointPrimitive {
13251
13969
  show?: boolean;
13252
13970
  eventParent?: BaseClass | boolean;
13253
13971
  allowDrillPick?: boolean | ((...params: any[]) => any);
13972
+ flyTo?: boolean;
13973
+ flyToOptions?: any;
13254
13974
  });
13255
13975
  /**
13256
13976
  * 当加载primitive数据的内部Cesium容器
@@ -13361,6 +14081,8 @@ declare namespace BoxPrimitive {
13361
14081
  * @param [options.show = true] - 矢量数据是否显示
13362
14082
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
13363
14083
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14084
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
14085
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
13364
14086
  */
13365
14087
  declare class BoxPrimitive extends BasePointPrimitive {
13366
14088
  constructor(options: {
@@ -13390,6 +14112,8 @@ declare class BoxPrimitive extends BasePointPrimitive {
13390
14112
  show?: boolean;
13391
14113
  eventParent?: BaseClass | boolean;
13392
14114
  allowDrillPick?: boolean | ((...params: any[]) => any);
14115
+ flyTo?: boolean;
14116
+ flyToOptions?: any;
13393
14117
  });
13394
14118
  }
13395
14119
 
@@ -13494,6 +14218,8 @@ declare namespace CirclePrimitive {
13494
14218
  * @param [options.show = true] - 矢量数据是否显示
13495
14219
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
13496
14220
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14221
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
14222
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
13497
14223
  */
13498
14224
  declare class CirclePrimitive extends BasePointPrimitive {
13499
14225
  constructor(options: {
@@ -13523,6 +14249,8 @@ declare class CirclePrimitive extends BasePointPrimitive {
13523
14249
  show?: boolean;
13524
14250
  eventParent?: BaseClass | boolean;
13525
14251
  allowDrillPick?: boolean | ((...params: any[]) => any);
14252
+ flyTo?: boolean;
14253
+ flyToOptions?: any;
13526
14254
  });
13527
14255
  /**
13528
14256
  * 圆的半径(单位:米)
@@ -13640,6 +14368,8 @@ declare namespace CloudPrimitive {
13640
14368
  * @param [options.name = ''] - 矢量数据名称
13641
14369
  * @param [options.show = true] - 矢量数据是否显示
13642
14370
  * @param [options.stopPropagation = false] - 当前类中事件是否停止冒泡, false时:事件冒泡到layer中。
14371
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
14372
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
13643
14373
  */
13644
14374
  declare class CloudPrimitive extends BasePointPrimitive {
13645
14375
  constructor(options: {
@@ -13655,6 +14385,8 @@ declare class CloudPrimitive extends BasePointPrimitive {
13655
14385
  name?: string;
13656
14386
  show?: boolean;
13657
14387
  stopPropagation?: boolean;
14388
+ flyTo?: boolean;
14389
+ flyToOptions?: any;
13658
14390
  });
13659
14391
  /**
13660
14392
  * 当加载primitive数据的内部Cesium容器
@@ -13853,6 +14585,8 @@ declare namespace ConeTrackPrimitive {
13853
14585
  * @param [options.show = true] - 矢量数据是否显示
13854
14586
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
13855
14587
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14588
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
14589
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
13856
14590
  */
13857
14591
  declare class ConeTrackPrimitive extends CylinderPrimitive {
13858
14592
  constructor(options: {
@@ -13882,6 +14616,8 @@ declare class ConeTrackPrimitive extends CylinderPrimitive {
13882
14616
  show?: boolean;
13883
14617
  eventParent?: BaseClass | boolean;
13884
14618
  allowDrillPick?: boolean | ((...params: any[]) => any);
14619
+ flyTo?: boolean;
14620
+ flyToOptions?: any;
13885
14621
  });
13886
14622
  /**
13887
14623
  * 追踪的目标位置(确定了方向和距离)
@@ -13996,6 +14732,8 @@ declare namespace CorridorPrimitive {
13996
14732
  * @param [options.show = true] - 矢量数据是否显示
13997
14733
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
13998
14734
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14735
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
14736
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
13999
14737
  */
14000
14738
  declare class CorridorPrimitive extends BasePolyPrimitive {
14001
14739
  constructor(options: {
@@ -14024,6 +14762,8 @@ declare class CorridorPrimitive extends BasePolyPrimitive {
14024
14762
  show?: boolean;
14025
14763
  eventParent?: BaseClass | boolean;
14026
14764
  allowDrillPick?: boolean | ((...params: any[]) => any);
14765
+ flyTo?: boolean;
14766
+ flyToOptions?: any;
14027
14767
  });
14028
14768
  }
14029
14769
 
@@ -14114,6 +14854,8 @@ declare namespace CylinderPrimitive {
14114
14854
  * @param [options.show = true] - 矢量数据是否显示
14115
14855
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14116
14856
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14857
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
14858
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
14117
14859
  */
14118
14860
  declare class CylinderPrimitive extends BasePointPrimitive {
14119
14861
  constructor(options: {
@@ -14143,6 +14885,8 @@ declare class CylinderPrimitive extends BasePointPrimitive {
14143
14885
  show?: boolean;
14144
14886
  eventParent?: BaseClass | boolean;
14145
14887
  allowDrillPick?: boolean | ((...params: any[]) => any);
14888
+ flyTo?: boolean;
14889
+ flyToOptions?: any;
14146
14890
  });
14147
14891
  }
14148
14892
 
@@ -14183,6 +14927,8 @@ declare namespace DiffuseWall {
14183
14927
  * @param [options.show = true] - 矢量数据是否显示
14184
14928
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14185
14929
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14930
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
14931
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
14186
14932
  */
14187
14933
  declare class DiffuseWall extends BasePolyPrimitive {
14188
14934
  constructor(options: {
@@ -14200,6 +14946,8 @@ declare class DiffuseWall extends BasePolyPrimitive {
14200
14946
  show?: boolean;
14201
14947
  eventParent?: BaseClass | boolean;
14202
14948
  allowDrillPick?: boolean | ((...params: any[]) => any);
14949
+ flyTo?: boolean;
14950
+ flyToOptions?: any;
14203
14951
  });
14204
14952
  /**
14205
14953
  * 圆形时,位置坐标 (笛卡尔坐标), 赋值时可以传入LatLngPoint对象
@@ -14223,6 +14971,119 @@ declare class DiffuseWall extends BasePolyPrimitive {
14223
14971
  readonly czmObject: Cesium.Entity | Cesium.Primitive | Cesium.GroundPrimitive | Cesium.ClassificationPrimitive | any;
14224
14972
  }
14225
14973
 
14974
+ declare namespace DoubleSidedPlane {
14975
+ /**
14976
+ * 双面渲染图片平面 支持的样式信息
14977
+ * @property [dimensions_x = 100] - 长度
14978
+ * @property [dimensions_y = 100] - 宽度
14979
+ * @property [image] - 填充的图片
14980
+ * @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
14981
+ * @property [color = Cesium.Color.WHITE] - 颜色
14982
+ * @property [speed = 0] - 不为0时呈现图片滚动效果,数字代表滚动速度
14983
+ * @property [flipx = false] - 是否X方向翻转图片
14984
+ * @property [flipy = false] - 是否Y方向翻转图片
14985
+ * @property [noWhite = true] - 是否不显示白色,true时没有加载完成前的白色闪烁,但也不支持纯白色的图片
14986
+ * @property [heading = 0] - 方向角 (度数值,0-360度)
14987
+ * @property [pitch = 0] - 俯仰角(度数值,0-360度)
14988
+ * @property [roll = 0] - 翻滚角(度数值,0-360度)
14989
+ *
14990
+ * //以下是 这是MaterialAppearance的参数
14991
+ * @property [flat = false] - 当true时,在片段着色器中使用平面着色,不考虑光照。
14992
+ * @property [faceForward = !closed] - 当true时,片段着色器根据需要翻转表面的法线,以确保法线面向查看器以避免黑点。
14993
+ * @property [translucent = true] - 当true时,几何图形将显示为半透明,因此{@link Cesium.PerInstanceColorAppearance#renderState}将启用alpha混合。
14994
+ * @property [closed = false] - 当true时,几何图形将被关闭,因此{@link Cesium.PerInstanceColorAppearance#renderState}启用了背面剔除。
14995
+ * @property [vertexShaderSource] - 可选的GLSL顶点着色器源,覆盖默认的顶点着色器。
14996
+ * @property [fragmentShaderSource] - 可选的GLSL片段着色器源覆盖默认的片段着色器。
14997
+ * @property [renderState] - 可选渲染状态,以覆盖默认渲染状态。
14998
+ */
14999
+ type StyleOptions = any | {
15000
+ dimensions_x?: number;
15001
+ dimensions_y?: number;
15002
+ image?: string;
15003
+ opacity?: number;
15004
+ color?: string | Cesium.Color;
15005
+ speed?: number;
15006
+ flipx?: boolean;
15007
+ flipy?: boolean;
15008
+ noWhite?: boolean;
15009
+ heading?: number;
15010
+ pitch?: number;
15011
+ roll?: number;
15012
+ flat?: boolean;
15013
+ faceForward?: boolean;
15014
+ translucent?: boolean;
15015
+ closed?: boolean;
15016
+ vertexShaderSource?: string;
15017
+ fragmentShaderSource?: string;
15018
+ renderState?: any;
15019
+ };
15020
+ }
15021
+
15022
+ /**
15023
+ * 双面渲染图片平面 Primitive图元矢量对象
15024
+ * @param options - 参数对象,包括以下:
15025
+ * @param options.position - 坐标位置
15026
+ * @param [options.modelMatrix] - 将图元(所有几何实例)从模型转换为世界坐标的4x4变换矩阵,可以替代position。
15027
+ * @param options.style - 样式信息
15028
+ * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
15029
+ * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
15030
+ * @param [options.attributes] - [cesium原生]每个实例的属性。
15031
+ * @param [options.depthFailAppearance] - 当深度测试失败时,用于为该图元着色的外观。
15032
+ * @param [options.vertexCacheOptimize = false] - 当true,几何顶点优化前和后顶点着色缓存。
15033
+ * @param [options.interleave = false] - 当true时,几何顶点属性被交叉,这可以略微提高渲染性能,但会增加加载时间。
15034
+ * @param [options.compressVertices = true] - 当true时,几何顶点被压缩,这将节省内存。提升效率。
15035
+ * @param [options.releaseGeometryInstances = true] - 当true时,图元不保留对输入geometryInstances的引用以节省内存。
15036
+ * @param [options.allowPicking = true] - 当true时,每个几何图形实例只能通过{@link Scene#pick}进行挑选。当false时,保存GPU内存。
15037
+ * @param [options.cull = true] - 当true时,渲染器会根据图元的边界体积来剔除它们的截锥和地平线。设置为false,如果你手动剔除图元,可以获得较小的性能提升。
15038
+ * @param [options.asynchronous = true] - 确定该图元是异步创建还是阻塞创建,直到就绪。
15039
+ * @param [options.debugShowBoundingVolume = false] - 仅供调试。确定该图元命令的边界球是否显示。
15040
+ * @param [options.debugShowShadowVolume = false] - 仅供调试。贴地时,确定是否绘制了图元中每个几何图形的阴影体积。必须是true创建卷之前要释放几何图形或选项。releaseGeometryInstance必须是false。
15041
+ * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
15042
+ * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
15043
+ * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
15044
+ * @param [options.tooltipOptions] - tooltip弹窗时的配置参数,也支持如pointerEvents等{@link Tooltip}构造参数
15045
+ * @param [options.contextmenuItems] - 当矢量数据支持右键菜单时,也可以bindContextMenu方法绑定
15046
+ * @param [options.id = createGuid()] - 矢量数据id标识
15047
+ * @param [options.name = ''] - 矢量数据名称
15048
+ * @param [options.show = true] - 矢量数据是否显示
15049
+ * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15050
+ * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15051
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
15052
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
15053
+ */
15054
+ declare class DoubleSidedPlane extends BasePointPrimitive {
15055
+ constructor(options: {
15056
+ position: LngLatPoint | Cesium.Cartesian3 | number[];
15057
+ modelMatrix?: Cesium.Matrix4;
15058
+ style: DoubleSidedPlane.StyleOptions | any;
15059
+ attr?: any;
15060
+ appearance?: Cesium.Appearance;
15061
+ attributes?: Cesium.Appearance;
15062
+ depthFailAppearance?: Cesium.Appearance;
15063
+ vertexCacheOptimize?: boolean;
15064
+ interleave?: boolean;
15065
+ compressVertices?: boolean;
15066
+ releaseGeometryInstances?: boolean;
15067
+ allowPicking?: boolean;
15068
+ cull?: boolean;
15069
+ asynchronous?: boolean;
15070
+ debugShowBoundingVolume?: boolean;
15071
+ debugShowShadowVolume?: boolean;
15072
+ popup?: string | any[] | ((...params: any[]) => any);
15073
+ popupOptions?: Popup.StyleOptions | any;
15074
+ tooltip?: string | any[] | ((...params: any[]) => any);
15075
+ tooltipOptions?: Tooltip.StyleOptions | any;
15076
+ contextmenuItems?: any;
15077
+ id?: string | number;
15078
+ name?: string;
15079
+ show?: boolean;
15080
+ eventParent?: BaseClass | boolean;
15081
+ allowDrillPick?: boolean | ((...params: any[]) => any);
15082
+ flyTo?: boolean;
15083
+ flyToOptions?: any;
15084
+ });
15085
+ }
15086
+
14226
15087
  declare namespace DynamicRiver {
14227
15088
  /**
14228
15089
  * 动态河流 支持的样式信息
@@ -14258,6 +15119,8 @@ declare namespace DynamicRiver {
14258
15119
  * @param [options.show = true] - 矢量数据是否显示
14259
15120
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14260
15121
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15122
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
15123
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
14261
15124
  */
14262
15125
  declare class DynamicRiver extends BasePolyPrimitive {
14263
15126
  constructor(options: {
@@ -14269,6 +15132,8 @@ declare class DynamicRiver extends BasePolyPrimitive {
14269
15132
  show?: boolean;
14270
15133
  eventParent?: BaseClass | boolean;
14271
15134
  allowDrillPick?: boolean | ((...params: any[]) => any);
15135
+ flyTo?: boolean;
15136
+ flyToOptions?: any;
14272
15137
  });
14273
15138
  /**
14274
15139
  * 图片材质URL
@@ -14432,6 +15297,8 @@ declare namespace EllipsoidPrimitive {
14432
15297
  * @param [options.show = true] - 矢量数据是否显示
14433
15298
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14434
15299
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15300
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
15301
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
14435
15302
  */
14436
15303
  declare class EllipsoidPrimitive extends BasePointPrimitive {
14437
15304
  constructor(options: {
@@ -14461,6 +15328,8 @@ declare class EllipsoidPrimitive extends BasePointPrimitive {
14461
15328
  show?: boolean;
14462
15329
  eventParent?: BaseClass | boolean;
14463
15330
  allowDrillPick?: boolean | ((...params: any[]) => any);
15331
+ flyTo?: boolean;
15332
+ flyToOptions?: any;
14464
15333
  });
14465
15334
  }
14466
15335
 
@@ -14549,6 +15418,8 @@ declare namespace FrustumPrimitive {
14549
15418
  * @param [options.show = true] - 矢量数据是否显示
14550
15419
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14551
15420
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15421
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
15422
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
14552
15423
  */
14553
15424
  declare class FrustumPrimitive extends BasePointPrimitive {
14554
15425
  constructor(options: {
@@ -14578,6 +15449,8 @@ declare class FrustumPrimitive extends BasePointPrimitive {
14578
15449
  show?: boolean;
14579
15450
  eventParent?: BaseClass | boolean;
14580
15451
  allowDrillPick?: boolean | ((...params: any[]) => any);
15452
+ flyTo?: boolean;
15453
+ flyToOptions?: any;
14581
15454
  });
14582
15455
  /**
14583
15456
  * 圆锥追踪的目标(确定了方向和距离)
@@ -14653,6 +15526,8 @@ declare namespace LabelPrimitive {
14653
15526
  * @param [options.show = true] - 矢量数据是否显示
14654
15527
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14655
15528
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15529
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
15530
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
14656
15531
  */
14657
15532
  declare class LabelPrimitive extends BasePointPrimitive {
14658
15533
  constructor(options: {
@@ -14674,6 +15549,8 @@ declare class LabelPrimitive extends BasePointPrimitive {
14674
15549
  show?: boolean;
14675
15550
  eventParent?: BaseClass | boolean;
14676
15551
  allowDrillPick?: boolean | ((...params: any[]) => any);
15552
+ flyTo?: boolean;
15553
+ flyToOptions?: any;
14677
15554
  });
14678
15555
  /**
14679
15556
  * 当加载primitive数据的内部Cesium容器
@@ -14725,6 +15602,8 @@ declare namespace LightCone {
14725
15602
  * @param [options.show = true] - 矢量数据是否显示
14726
15603
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14727
15604
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15605
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
15606
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
14728
15607
  */
14729
15608
  declare class LightCone extends BasePointPrimitive {
14730
15609
  constructor(options: {
@@ -14741,6 +15620,8 @@ declare class LightCone extends BasePointPrimitive {
14741
15620
  show?: boolean;
14742
15621
  eventParent?: BaseClass | boolean;
14743
15622
  allowDrillPick?: boolean | ((...params: any[]) => any);
15623
+ flyTo?: boolean;
15624
+ flyToOptions?: any;
14744
15625
  });
14745
15626
  /**
14746
15627
  * 颜色
@@ -14803,9 +15684,6 @@ declare namespace ModelPrimitive {
14803
15684
  * @property [dequantizeInShader = true] - 确定一个{@link https://github.com/google/draco|Draco}编码的模型是否在GPU上被去量化。这减少了编码模型的总内存使用量。
14804
15685
  * @property [backFaceCulling = true] - 是否剔除面向背面的几何图形。当为真时,背面剔除是由材料的双面属性决定的;当为false时,禁用背面剔除。如果{@link Model#color}是半透明的,或者{@link Model#silhouette}大于0.0,则背面不会被剔除。
14805
15686
  * @property [debugShowBoundingVolume = false] - 仅供调试。查看模型的包围边界球。
14806
- * @property [debugWireframe = false] - 仅供调试。查看模型的三角网线框图。
14807
- *
14808
- * //以下是 以下是 模型动画相关
14809
15687
  * @property [startTime] - 场景时间开始播放动画。当undefined时,动画从下一帧开始。
14810
15688
  * @property [delay = 0.0] - 从startTime开始播放的延迟,以秒为单位。
14811
15689
  * @property [stopTime] - 场景时间停止播放动画。当这是undefined,动画播放它的整个持续时间。
@@ -14817,6 +15695,10 @@ declare namespace ModelPrimitive {
14817
15695
  * @property [addHeight] - 在现有坐标基础上增加的高度值(常用于图层中配置),也支持字符串模版配置
14818
15696
  * @property [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
14819
15697
  * @property [label] - 支持附带文字的显示
15698
+ * @param [options.enableDebugWireframe = false] - 仅供调试。是否可以通过debugWireframe来切换查看模型的三角网线框图。
15699
+ * @param [options.debugWireframe = false] - 仅供调试。是否打开模型的三角网线框图。
15700
+ *
15701
+ * //以下是 以下是 模型动画相关
14820
15702
  */
14821
15703
  type StyleOptions = any | {
14822
15704
  url?: string | Cesium.Resource;
@@ -14865,7 +15747,6 @@ declare namespace ModelPrimitive {
14865
15747
  dequantizeInShader?: boolean;
14866
15748
  backFaceCulling?: boolean;
14867
15749
  debugShowBoundingVolume?: boolean;
14868
- debugWireframe?: boolean;
14869
15750
  startTime?: Cesium.JulianDate;
14870
15751
  delay?: number;
14871
15752
  stopTime?: Cesium.JulianDate;
@@ -14907,6 +15788,8 @@ declare namespace ModelPrimitive {
14907
15788
  * @param [options.show = true] - 矢量数据是否显示
14908
15789
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14909
15790
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15791
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
15792
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
14910
15793
  */
14911
15794
  declare class ModelPrimitive extends BasePointPrimitive {
14912
15795
  constructor(options: {
@@ -14934,6 +15817,8 @@ declare class ModelPrimitive extends BasePointPrimitive {
14934
15817
  show?: boolean;
14935
15818
  eventParent?: BaseClass | boolean;
14936
15819
  allowDrillPick?: boolean | ((...params: any[]) => any);
15820
+ flyTo?: boolean;
15821
+ flyToOptions?: any;
14937
15822
  });
14938
15823
  /**
14939
15824
  * 模型整体的缩放比例
@@ -14969,7 +15854,7 @@ declare namespace Pit {
14969
15854
  * @property image - 井墙面贴图URL
14970
15855
  * @property imageBottom - 井底面贴图URL
14971
15856
  * @property diffHeight - 井下深度(单位:米)
14972
- * @property [splitNum = 50] - 井墙面每两点之间插值个数
15857
+ * @property [splitNum = 50] - 井墙面每两点之间插值个数(概略值,有经纬网网格来插值)
14973
15858
  * @property [label] - 支持附带文字的显示
14974
15859
  */
14975
15860
  type StyleOptions = any | {
@@ -15010,6 +15895,8 @@ declare namespace Pit {
15010
15895
  * @param [options.show = true] - 矢量数据是否显示
15011
15896
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15012
15897
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15898
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
15899
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
15013
15900
  */
15014
15901
  declare class Pit extends BasePolyPrimitive {
15015
15902
  constructor(options: {
@@ -15038,6 +15925,8 @@ declare class Pit extends BasePolyPrimitive {
15038
15925
  show?: boolean;
15039
15926
  eventParent?: BaseClass | boolean;
15040
15927
  allowDrillPick?: boolean | ((...params: any[]) => any);
15928
+ flyTo?: boolean;
15929
+ flyToOptions?: any;
15041
15930
  });
15042
15931
  /**
15043
15932
  * 井下深度(单位:米)
@@ -15138,6 +16027,8 @@ declare namespace PlanePrimitive {
15138
16027
  * @param [options.show = true] - 矢量数据是否显示
15139
16028
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15140
16029
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16030
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16031
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
15141
16032
  */
15142
16033
  declare class PlanePrimitive extends BasePointPrimitive {
15143
16034
  constructor(options: {
@@ -15167,6 +16058,8 @@ declare class PlanePrimitive extends BasePointPrimitive {
15167
16058
  show?: boolean;
15168
16059
  eventParent?: BaseClass | boolean;
15169
16060
  allowDrillPick?: boolean | ((...params: any[]) => any);
16061
+ flyTo?: boolean;
16062
+ flyToOptions?: any;
15170
16063
  });
15171
16064
  /**
15172
16065
  * 用于指定位置的矩阵
@@ -15246,6 +16139,8 @@ declare namespace PointPrimitive {
15246
16139
  * @param [options.show = true] - 矢量数据是否显示
15247
16140
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15248
16141
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16142
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16143
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
15249
16144
  */
15250
16145
  declare class PointPrimitive extends BasePointPrimitive {
15251
16146
  constructor(options: {
@@ -15268,6 +16163,8 @@ declare class PointPrimitive extends BasePointPrimitive {
15268
16163
  show?: boolean;
15269
16164
  eventParent?: BaseClass | boolean;
15270
16165
  allowDrillPick?: boolean | ((...params: any[]) => any);
16166
+ flyTo?: boolean;
16167
+ flyToOptions?: any;
15271
16168
  });
15272
16169
  /**
15273
16170
  * 当加载primitive数据的内部Cesium容器
@@ -15297,6 +16194,7 @@ declare namespace PolygonPrimitive {
15297
16194
  * @property [granularity = Cesium.Math.RADIANS_PER_DEGREE] - 指定每个纬度点和经度点之间的角距离。
15298
16195
  * @property [closeTop = true] - 当为false时,离开一个挤压多边形的顶部打开。
15299
16196
  * @property [closeBottom = true] - 当为false时,离开挤压多边形的底部打开。
16197
+ * @property [textureCoordinates] - 纹理坐标,是Cartesian2的UV坐标数组的多边形层次结构。对贴地对象无效。
15300
16198
  * @property [distanceDisplayCondition = false] - 是否按视距显示 或 指定此框将显示在与摄像机的多大距离。
15301
16199
  * @property [distanceDisplayCondition_far = 100000] - 最大距离
15302
16200
  * @property [distanceDisplayCondition_near = 0] - 最小距离
@@ -15320,8 +16218,8 @@ declare namespace PolygonPrimitive {
15320
16218
  * @property [addHeight] - 在现有坐标基础上增加的高度值,或数组指定每个点增加的高度(常用于图层中配置)
15321
16219
  * @property [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
15322
16220
  * @property [label] - 支持附带文字的显示 ,额外支持:<br />
15323
- * // * @property {String|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
15324
- * // * @property {Boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
16221
+ * // * @property {string|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
16222
+ * // * @property {boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
15325
16223
  */
15326
16224
  type StyleOptions = any | {
15327
16225
  materialType?: string;
@@ -15343,6 +16241,7 @@ declare namespace PolygonPrimitive {
15343
16241
  granularity?: number;
15344
16242
  closeTop?: boolean;
15345
16243
  closeBottom?: boolean;
16244
+ textureCoordinates?: Cesium.PolygonHierarchy;
15346
16245
  distanceDisplayCondition?: boolean | Cesium.DistanceDisplayConditionGeometryInstanceAttribute;
15347
16246
  distanceDisplayCondition_far?: number;
15348
16247
  distanceDisplayCondition_near?: number;
@@ -15395,6 +16294,8 @@ declare namespace PolygonPrimitive {
15395
16294
  * @param [options.show = true] - 矢量数据是否显示
15396
16295
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15397
16296
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16297
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16298
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
15398
16299
  */
15399
16300
  declare class PolygonPrimitive extends BasePolyPrimitive {
15400
16301
  constructor(options: {
@@ -15423,6 +16324,8 @@ declare class PolygonPrimitive extends BasePolyPrimitive {
15423
16324
  show?: boolean;
15424
16325
  eventParent?: BaseClass | boolean;
15425
16326
  allowDrillPick?: boolean | ((...params: any[]) => any);
16327
+ flyTo?: boolean;
16328
+ flyToOptions?: any;
15426
16329
  });
15427
16330
  /**
15428
16331
  * 周长 距离(单位:米)
@@ -15467,8 +16370,8 @@ declare namespace PolylinePrimitive {
15467
16370
  * @property [addHeight] - 在现有坐标基础上增加的高度值,或数组指定每个点增加的高度(常用于图层中配置)
15468
16371
  * @property [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
15469
16372
  * @property [label] - 支持附带文字的显示 ,额外支持:<br />
15470
- * // * @property {String|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
15471
- * // * @property {Boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
16373
+ * // * @property {string|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
16374
+ * // * @property {boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
15472
16375
  */
15473
16376
  type StyleOptions = any | {
15474
16377
  width?: number;
@@ -15528,6 +16431,8 @@ declare namespace PolylinePrimitive {
15528
16431
  * @param [options.show = true] - 矢量数据是否显示
15529
16432
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15530
16433
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16434
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16435
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
15531
16436
  */
15532
16437
  declare class PolylinePrimitive extends BasePolyPrimitive {
15533
16438
  constructor(options: {
@@ -15556,65 +16461,8 @@ declare class PolylinePrimitive extends BasePolyPrimitive {
15556
16461
  show?: boolean;
15557
16462
  eventParent?: BaseClass | boolean;
15558
16463
  allowDrillPick?: boolean | ((...params: any[]) => any);
15559
- });
15560
- }
15561
-
15562
- /**
15563
- * 简单线 Primitive图元 矢量对象
15564
- * @param options - 参数对象,包括以下:
15565
- * @param options.positions - 坐标位置
15566
- * @param options.style - 样式信息
15567
- * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
15568
- * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
15569
- * @param [options.attributes] - [cesium原生]每个实例的属性。
15570
- * @param [options.depthFailAppearance] - 当深度测试失败时,用于为该图元着色的外观。
15571
- * @param [options.vertexCacheOptimize = false] - 当true,几何顶点优化前和后顶点着色缓存。
15572
- * @param [options.interleave = false] - 当true时,几何顶点属性被交叉,这可以略微提高渲染性能,但会增加加载时间。
15573
- * @param [options.compressVertices = true] - 当true时,几何顶点被压缩,这将节省内存。提升效率。
15574
- * @param [options.releaseGeometryInstances = true] - 当true时,图元不保留对输入geometryInstances的引用以节省内存。
15575
- * @param [options.allowPicking = true] - 当true时,每个几何图形实例只能通过{@link Scene#pick}进行挑选。当false时,保存GPU内存。
15576
- * @param [options.cull = true] - 当true时,渲染器会根据图元的边界体积来剔除它们的截锥和地平线。设置为false,如果你手动剔除图元,可以获得较小的性能提升。
15577
- * @param [options.asynchronous = true] - 确定该图元是异步创建还是阻塞创建,直到就绪。
15578
- * @param [options.debugShowBoundingVolume = false] - 仅供调试。确定该图元命令的边界球是否显示。
15579
- * @param [options.debugShowShadowVolume = false] - 仅供调试。贴地时,确定是否绘制了图元中每个几何图形的阴影体积。必须是true创建卷之前要释放几何图形或选项。releaseGeometryInstance必须是false。
15580
- * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
15581
- * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
15582
- * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
15583
- * @param [options.tooltipOptions] - tooltip弹窗时的配置参数,也支持如pointerEvents等{@link Tooltip}构造参数
15584
- * @param [options.contextmenuItems] - 当矢量数据支持右键菜单时,也可以bindContextMenu方法绑定
15585
- * @param [options.id = createGuid()] - 矢量数据id标识
15586
- * @param [options.name = ''] - 矢量数据名称
15587
- * @param [options.show = true] - 矢量数据是否显示
15588
- * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15589
- * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15590
- */
15591
- declare class PolylineSimplePrimitive extends BasePolyPrimitive {
15592
- constructor(options: {
15593
- positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
15594
- style: PolylinePrimitive.StyleOptions | any;
15595
- attr?: any;
15596
- appearance?: Cesium.Appearance;
15597
- attributes?: Cesium.Appearance;
15598
- depthFailAppearance?: Cesium.Appearance;
15599
- vertexCacheOptimize?: boolean;
15600
- interleave?: boolean;
15601
- compressVertices?: boolean;
15602
- releaseGeometryInstances?: boolean;
15603
- allowPicking?: boolean;
15604
- cull?: boolean;
15605
- asynchronous?: boolean;
15606
- debugShowBoundingVolume?: boolean;
15607
- debugShowShadowVolume?: boolean;
15608
- popup?: string | any[] | ((...params: any[]) => any);
15609
- popupOptions?: Popup.StyleOptions | any;
15610
- tooltip?: string | any[] | ((...params: any[]) => any);
15611
- tooltipOptions?: Tooltip.StyleOptions | any;
15612
- contextmenuItems?: any;
15613
- id?: string | number;
15614
- name?: string;
15615
- show?: boolean;
15616
- eventParent?: BaseClass | boolean;
15617
- allowDrillPick?: boolean | ((...params: any[]) => any);
16464
+ flyTo?: boolean;
16465
+ flyToOptions?: any;
15618
16466
  });
15619
16467
  }
15620
16468
 
@@ -15710,6 +16558,8 @@ declare namespace PolylineVolumePrimitive {
15710
16558
  * @param [options.show = true] - 矢量数据是否显示
15711
16559
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15712
16560
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16561
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16562
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
15713
16563
  */
15714
16564
  declare class PolylineVolumePrimitive extends BasePolyPrimitive {
15715
16565
  constructor(options: {
@@ -15738,6 +16588,8 @@ declare class PolylineVolumePrimitive extends BasePolyPrimitive {
15738
16588
  show?: boolean;
15739
16589
  eventParent?: BaseClass | boolean;
15740
16590
  allowDrillPick?: boolean | ((...params: any[]) => any);
16591
+ flyTo?: boolean;
16592
+ flyToOptions?: any;
15741
16593
  });
15742
16594
  }
15743
16595
 
@@ -15828,6 +16680,8 @@ declare namespace RectanglePrimitive {
15828
16680
  * @param [options.show = true] - 矢量数据是否显示
15829
16681
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15830
16682
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16683
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16684
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
15831
16685
  */
15832
16686
  declare class RectanglePrimitive extends BasePolyPrimitive {
15833
16687
  constructor(options: {
@@ -15857,6 +16711,8 @@ declare class RectanglePrimitive extends BasePolyPrimitive {
15857
16711
  show?: boolean;
15858
16712
  eventParent?: BaseClass | boolean;
15859
16713
  allowDrillPick?: boolean | ((...params: any[]) => any);
16714
+ flyTo?: boolean;
16715
+ flyToOptions?: any;
15860
16716
  });
15861
16717
  /**
15862
16718
  * 坐标数据对应的矩形边界对象
@@ -15891,6 +16747,111 @@ declare class RectanglePrimitive extends BasePolyPrimitive {
15891
16747
  readonly area: number;
15892
16748
  }
15893
16749
 
16750
+ declare namespace ReflectionWater {
16751
+ /**
16752
+ * 反射水面(显示模型倒影) Primitive图元 支持的样式信息
16753
+ * @property [color = "#123e59"] - 水面的颜色
16754
+ * @property [opacity = 0.9] - 透明度,取值范围:0.0-1.0
16755
+ * @property [normalMap] - 水正常扰动的法线图
16756
+ * @property [reflectivity = 0.5] - 水面反射率,取值范围:0.0-1.0
16757
+ * @property [ripple = 50.0] - 波纹大小(数值越大,波纹越密集)
16758
+ * @property [distortion = 3.7] - 倒影的扭曲程度
16759
+ * @property [shiny = 100.0] - 光照强度
16760
+ * @property [lightDirection = new Cesium.Cartesian3(0, 0, 1)] - 光照方向,单位向量。原点为水面中心点,水面中心点由 options.positions 决定,X、Y、Z轴对应水面中心点的东、北、上方向。(默认为0,0,1)
16761
+ * @property [stRotation = 0] - 水流方向的角度(弧度值),正北为0,逆时针旋转
16762
+ * @property [stRotationDegree = 0] - 水流方向的角度(度数值,0-360度),与stRotation二选一
16763
+ * @property [height = 0] - 高程,圆相对于椭球面的高度。
16764
+ * @property [diffHeight = 100] - 高度差(走廊本身的高度),与extrudedHeight二选一。
16765
+ * @property [extrudedHeight] - 指定走廊挤压面相对于椭球面的高度。
16766
+ * @property [granularity = Cesium.Math.RADIANS_PER_DEGREE] - 指定每个纬度点和经度点之间的角距离。
16767
+ * @property [closeTop = true] - 当为false时,离开一个挤压多边形的顶部打开。
16768
+ * @property [closeBottom = true] - 当为false时,离开挤压多边形的底部打开。
16769
+ * @property [arcType = Cesium.ArcType.GEODESIC] - 多边形的边缘必须遵循的线条类型。
16770
+ */
16771
+ type StyleOptions = any | {
16772
+ color?: string;
16773
+ opacity?: number;
16774
+ normalMap?: string;
16775
+ reflectivity?: number;
16776
+ ripple?: number;
16777
+ distortion?: number;
16778
+ shiny?: number;
16779
+ lightDirection?: Cesium.Cartesian3;
16780
+ stRotation?: number;
16781
+ stRotationDegree?: number;
16782
+ height?: number;
16783
+ diffHeight?: number;
16784
+ extrudedHeight?: number;
16785
+ granularity?: number;
16786
+ closeTop?: boolean;
16787
+ closeBottom?: boolean;
16788
+ arcType?: Cesium.ArcType;
16789
+ };
16790
+ }
16791
+
16792
+ /**
16793
+ * 反射水面(显示模型倒影) Primitive图元 矢量对象
16794
+ * @param options - 参数对象,包括以下:
16795
+ * @param options.positions - 坐标位置
16796
+ * @param options.style - 样式信息
16797
+ * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
16798
+ * @param [options.vertexCacheOptimize = false] - 当true,几何顶点优化前和后顶点着色缓存。
16799
+ * @param [options.interleave = false] - 当true时,几何顶点属性被交叉,这可以略微提高渲染性能,但会增加加载时间。
16800
+ * @param [options.compressVertices = true] - 当true时,几何顶点被压缩,这将节省内存。提升效率。
16801
+ * @param [options.releaseGeometryInstances = true] - 当true时,图元不保留对输入geometryInstances的引用以节省内存。
16802
+ * @param [options.allowPicking = true] - 当true时,每个几何图形实例只能通过{@link Scene#pick}进行挑选。当false时,保存GPU内存。
16803
+ * @param [options.cull = true] - 当true时,渲染器会根据图元的边界体积来剔除它们的截锥和地平线。设置为false,如果你手动剔除图元,可以获得较小的性能提升。
16804
+ * @param [options.asynchronous = true] - 确定该图元是异步创建还是阻塞创建,直到就绪。
16805
+ * @param [options.debugShowBoundingVolume = false] - 仅供调试。确定该图元命令的边界球是否显示。
16806
+ * @param [options.debugShowShadowVolume = false] - 仅供调试。贴地时,确定是否绘制了图元中每个几何图形的阴影体积。必须是true创建卷之前要释放几何图形或选项。releaseGeometryInstance必须是false。
16807
+ * @param [options.frameRate = 1] - 多少帧刷新渲染一次。用于控制效率,如果卡顿就把该数值调大一些。
16808
+ * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
16809
+ * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
16810
+ * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
16811
+ * @param [options.tooltipOptions] - tooltip弹窗时的配置参数,也支持如pointerEvents等{@link Tooltip}构造参数
16812
+ * @param [options.contextmenuItems] - 当矢量数据支持右键菜单时,也可以bindContextMenu方法绑定
16813
+ * @param [options.id = createGuid()] - 矢量数据id标识
16814
+ * @param [options.name = ''] - 矢量数据名称
16815
+ * @param [options.show = true] - 矢量数据是否显示
16816
+ * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
16817
+ * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16818
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16819
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
16820
+ */
16821
+ declare class ReflectionWater extends PolygonPrimitive {
16822
+ constructor(options: {
16823
+ positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
16824
+ style: ReflectionWater.StyleOptions | any;
16825
+ attr?: any;
16826
+ vertexCacheOptimize?: boolean;
16827
+ interleave?: boolean;
16828
+ compressVertices?: boolean;
16829
+ releaseGeometryInstances?: boolean;
16830
+ allowPicking?: boolean;
16831
+ cull?: boolean;
16832
+ asynchronous?: boolean;
16833
+ debugShowBoundingVolume?: boolean;
16834
+ debugShowShadowVolume?: boolean;
16835
+ frameRate?: number;
16836
+ popup?: string | any[] | ((...params: any[]) => any);
16837
+ popupOptions?: Popup.StyleOptions | any;
16838
+ tooltip?: string | any[] | ((...params: any[]) => any);
16839
+ tooltipOptions?: Tooltip.StyleOptions | any;
16840
+ contextmenuItems?: any;
16841
+ id?: string | number;
16842
+ name?: string;
16843
+ show?: boolean;
16844
+ eventParent?: BaseClass | boolean;
16845
+ allowDrillPick?: boolean | ((...params: any[]) => any);
16846
+ flyTo?: boolean;
16847
+ flyToOptions?: any;
16848
+ });
16849
+ /**
16850
+ * 高度
16851
+ */
16852
+ height: number;
16853
+ }
16854
+
15894
16855
  declare namespace Road {
15895
16856
  /**
15896
16857
  * 道路 支持的样式信息
@@ -15918,6 +16879,8 @@ declare namespace Road {
15918
16879
  * @param [options.show = true] - 矢量数据是否显示
15919
16880
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15920
16881
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16882
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16883
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
15921
16884
  */
15922
16885
  declare class Road extends DynamicRiver {
15923
16886
  constructor(options: {
@@ -15929,6 +16892,8 @@ declare class Road extends DynamicRiver {
15929
16892
  show?: boolean;
15930
16893
  eventParent?: BaseClass | boolean;
15931
16894
  allowDrillPick?: boolean | ((...params: any[]) => any);
16895
+ flyTo?: boolean;
16896
+ flyToOptions?: any;
15932
16897
  });
15933
16898
  }
15934
16899
 
@@ -15970,6 +16935,8 @@ declare namespace ScrollWall {
15970
16935
  * @param [options.show = true] - 矢量数据是否显示
15971
16936
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15972
16937
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16938
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16939
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
15973
16940
  */
15974
16941
  declare class ScrollWall extends BasePolyPrimitive {
15975
16942
  constructor(options: {
@@ -15986,6 +16953,100 @@ declare class ScrollWall extends BasePolyPrimitive {
15986
16953
  show?: boolean;
15987
16954
  eventParent?: BaseClass | boolean;
15988
16955
  allowDrillPick?: boolean | ((...params: any[]) => any);
16956
+ flyTo?: boolean;
16957
+ flyToOptions?: any;
16958
+ });
16959
+ /**
16960
+ * 矢量数据对应的 Cesium内部对象 (不同子类中实现)
16961
+ */
16962
+ readonly czmObject: Cesium.Entity | Cesium.Primitive | Cesium.GroundPrimitive | Cesium.ClassificationPrimitive | any;
16963
+ }
16964
+
16965
+ declare namespace ThickWall {
16966
+ /**
16967
+ * 有厚度的围墙效果 支持的样式信息
16968
+ * @property [diffHeight = 100] - 墙高
16969
+ * @property [width = 10] - 墙厚度
16970
+ * @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
16971
+ * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
16972
+ * @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
16973
+ * @property [color = "#3388ff"] - 颜色
16974
+ * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
16975
+ * @property [closure = false] - 是否闭合
16976
+ * @property [hasShadows = false] - 是否阴影
16977
+ * @property [shadows = Cesium.ShadowMode.DISABLED] - 指定折线是投射还是接收来自光源的阴影。
16978
+ *
16979
+ * //以下是 这是MaterialAppearance的参数
16980
+ * @property [flat = false] - 当true时,在片段着色器中使用平面着色,不考虑光照。
16981
+ * @property [faceForward = !closed] - 当true时,片段着色器根据需要翻转表面的法线,以确保法线面向查看器以避免黑点。
16982
+ * @property [translucent = true] - 当true时,几何图形将显示为半透明,因此{@link Cesium.PerInstanceColorAppearance#renderState}将启用alpha混合。
16983
+ * @property [closed = false] - 当true时,几何图形将被关闭,因此{@link Cesium.PerInstanceColorAppearance#renderState}启用了背面剔除。
16984
+ * @property [vertexShaderSource] - 可选的GLSL顶点着色器源,覆盖默认的顶点着色器。
16985
+ * @property [fragmentShaderSource] - 可选的GLSL片段着色器源覆盖默认的片段着色器。
16986
+ * @property [renderState] - 可选渲染状态,以覆盖默认渲染状态。
16987
+ * @property [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
16988
+ * @property [label] - 支持附带文字的显示 ,额外支持:<br />
16989
+ * // * @property {string|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
16990
+ */
16991
+ type StyleOptions = any | {
16992
+ diffHeight?: number;
16993
+ width?: number;
16994
+ materialType?: string;
16995
+ materialOptions?: any;
16996
+ material?: Cesium.Material;
16997
+ color?: string | Cesium.Color;
16998
+ opacity?: number;
16999
+ closure?: boolean;
17000
+ hasShadows?: boolean;
17001
+ shadows?: Cesium.ShadowMode;
17002
+ flat?: boolean;
17003
+ faceForward?: boolean;
17004
+ translucent?: boolean;
17005
+ closed?: boolean;
17006
+ vertexShaderSource?: string;
17007
+ fragmentShaderSource?: string;
17008
+ renderState?: any;
17009
+ highlight?: WallPrimitive.StyleOptions | any;
17010
+ label?: LabelPrimitive.StyleOptions | any | any;
17011
+ };
17012
+ }
17013
+
17014
+ /**
17015
+ * 有厚度的围墙效果 矢量对象
17016
+ * @param options - 参数对象,包括以下:
17017
+ * @param options.positions - 坐标位置
17018
+ * @param options.style - 样式信息
17019
+ * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
17020
+ * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
17021
+ * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
17022
+ * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
17023
+ * @param [options.tooltipOptions] - tooltip弹窗时的配置参数,也支持如pointerEvents等{@link Tooltip}构造参数
17024
+ * @param [options.contextmenuItems] - 当矢量数据支持右键菜单时,也可以bindContextMenu方法绑定
17025
+ * @param [options.id = createGuid()] - 矢量数据id标识
17026
+ * @param [options.name = ''] - 矢量数据名称
17027
+ * @param [options.show = true] - 矢量数据是否显示
17028
+ * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
17029
+ * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17030
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
17031
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
17032
+ */
17033
+ declare class ThickWall extends BasePolyPrimitive {
17034
+ constructor(options: {
17035
+ positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
17036
+ style: ThickWall.StyleOptions | any;
17037
+ attr?: any;
17038
+ popup?: string | any[] | ((...params: any[]) => any);
17039
+ popupOptions?: Popup.StyleOptions | any;
17040
+ tooltip?: string | any[] | ((...params: any[]) => any);
17041
+ tooltipOptions?: Tooltip.StyleOptions | any;
17042
+ contextmenuItems?: any;
17043
+ id?: string | number;
17044
+ name?: string;
17045
+ show?: boolean;
17046
+ eventParent?: BaseClass | boolean;
17047
+ allowDrillPick?: boolean | ((...params: any[]) => any);
17048
+ flyTo?: boolean;
17049
+ flyToOptions?: any;
15989
17050
  });
15990
17051
  /**
15991
17052
  * 矢量数据对应的 Cesium内部对象 (不同子类中实现)
@@ -16019,8 +17080,8 @@ declare namespace WallPrimitive {
16019
17080
  * @property [renderState] - 可选渲染状态,以覆盖默认渲染状态。
16020
17081
  * @property [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
16021
17082
  * @property [label] - 支持附带文字的显示 ,额外支持:<br />
16022
- * // * @property {String|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
16023
- * // * @property {Boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
17083
+ * // * @property {string|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
17084
+ * // * @property {boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
16024
17085
  */
16025
17086
  type StyleOptions = any | {
16026
17087
  diffHeight?: number;
@@ -16075,6 +17136,8 @@ declare namespace WallPrimitive {
16075
17136
  * @param [options.show = true] - 矢量数据是否显示
16076
17137
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
16077
17138
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17139
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
17140
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
16078
17141
  */
16079
17142
  declare class WallPrimitive extends BasePolyPrimitive {
16080
17143
  constructor(options: {
@@ -16103,6 +17166,8 @@ declare class WallPrimitive extends BasePolyPrimitive {
16103
17166
  show?: boolean;
16104
17167
  eventParent?: BaseClass | boolean;
16105
17168
  allowDrillPick?: boolean | ((...params: any[]) => any);
17169
+ flyTo?: boolean;
17170
+ flyToOptions?: any;
16106
17171
  });
16107
17172
  }
16108
17173
 
@@ -16149,8 +17214,8 @@ declare namespace Water {
16149
17214
  * @property [addHeight] - 在现有坐标基础上增加的高度值,或数组指定每个点增加的高度(常用于图层中配置)
16150
17215
  * @property [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
16151
17216
  * @property [label] - 支持附带文字的显示 ,额外支持:<br />
16152
- * // * @property {String|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
16153
- * // * @property {Boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
17217
+ * // * @property {string|LngLatPoint} [label.position] 文字所在位置,默认是矢量对象本身的center属性值。支持配置 'center':围合面的内部中心点坐标,'{xxxx}'配置属性字段, 或者直接指定坐标值。
17218
+ * // * @property {boolean} [label.showAll] MultiPolygon和MultiLineString时,是否显示所有注记,默认只在最大坐标数的面或线上显示。
16154
17219
  */
16155
17220
  type StyleOptions = any | {
16156
17221
  baseWaterColor?: string;
@@ -16218,6 +17283,8 @@ declare namespace Water {
16218
17283
  * @param [options.show = true] - 矢量数据是否显示
16219
17284
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
16220
17285
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17286
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
17287
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
16221
17288
  */
16222
17289
  declare class Water extends PolygonPrimitive {
16223
17290
  constructor(options: {
@@ -16243,6 +17310,8 @@ declare class Water extends PolygonPrimitive {
16243
17310
  show?: boolean;
16244
17311
  eventParent?: BaseClass | boolean;
16245
17312
  allowDrillPick?: boolean | ((...params: any[]) => any);
17313
+ flyTo?: boolean;
17314
+ flyToOptions?: any;
16246
17315
  });
16247
17316
  }
16248
17317
 
@@ -18547,6 +19616,11 @@ declare class GraphicLayer extends BaseGraphicLayer {
18547
19616
  crs?: string;
18548
19617
  onEachFeature?: (...params: any[]) => any;
18549
19618
  }): BaseGraphic[];
19619
+ /**
19620
+ * 获取当前图层聚合点列表
19621
+ * @returns 聚合点列表
19622
+ */
19623
+ getClusterList(): any[];
18550
19624
  /**
18551
19625
  * 设置透明度 , 非全部矢量数据都支持,具体需要对应Graphic支持才有效
18552
19626
  * @param value - 透明度
@@ -19217,6 +20291,8 @@ declare namespace TilesetLayer {
19217
20291
  * @param [options.backFaceCulling = true] - 是否剔除面向背面的几何图形。当为真时,背面剔除由glTF材质的双面属性决定;当为false时,禁用背面剔除。
19218
20292
  * @param [options.debugHeatmapTilePropertyName] - 是否剔除面向背面的几何图形。当为真时,背面剔除由glTF材质的双面属性决定;作为热图着色的tile变量。所有渲染的贴图都将相对于其他指定的变量值着色。
19219
20293
  * @param [options.pickPrimitive] - 要在拾取过程中呈现的原语,而不是tile集合。
20294
+ * @param [options.enableDebugWireframe = false] - 仅供调试。是否可以通过debugWireframe来切换查看模型的三角网线框图。
20295
+ * @param [options.debugWireframe = false] - 仅供调试。是否打开模型的三角网线框图。
19220
20296
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定,支持:'all'、数组、字符串模板
19221
20297
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数,还包括:
19222
20298
  * @param [options.popupOptions.title] - 固定的标题名称
@@ -19312,6 +20388,8 @@ declare class TilesetLayer extends BaseGraphicLayer {
19312
20388
  backFaceCulling?: boolean;
19313
20389
  debugHeatmapTilePropertyName?: string;
19314
20390
  pickPrimitive?: any;
20391
+ enableDebugWireframe?: boolean;
20392
+ debugWireframe?: boolean;
19315
20393
  popup?: string | Globe.getTemplateHtml_template[] | ((...params: any[]) => any);
19316
20394
  popupOptions?: {
19317
20395
  title?: string;
@@ -20678,6 +21756,9 @@ declare namespace BaseTileLayer {
20678
21756
  * @param [options.gamma = 1.0] - 伽马校正值。 1.0使用未修改的图像颜色。
20679
21757
  * @param [options.invertColor] - 是否反向颜色,内部计算规则: color.r = 1.0 - color.r
20680
21758
  * @param [options.filterColor] - 滤镜颜色,内部计算规则: color.r = color.r * filterColor.r
21759
+ * @param [options.splitDirection = Cesium.SplitDirection.NONE] - 设置分屏对比所在的展示屏
21760
+ * @param [options.minificationFilter = Cesium.TextureMinificationFilter.LINEAR] - 缩小瓦片数据的过滤方式
21761
+ * @param [options.magnificationFilter = Cesium.TextureMagnificationFilter.LINEAR] - 放大瓦片数据的过滤方式
20681
21762
  * @param [options.maximumAnisotropy = maximum supported] - 使用的最大各向异性水平 用于纹理过滤。如果未指定此参数,则支持最大各向异性 将使用WebGL堆栈。较大的值可使影像在水平方向上看起来更好 视图。
20682
21763
  * @param [options.cutoutRectangle] - 制图矩形,用于裁剪此ImageryLayer的一部分。
20683
21764
  * @param [options.colorToAlpha] - 用作Alpha的颜色。
@@ -20735,6 +21816,9 @@ declare class BaseTileLayer extends BaseLayer {
20735
21816
  gamma?: number | ((...params: any[]) => any);
20736
21817
  invertColor?: boolean;
20737
21818
  filterColor?: string | Cesium.Color;
21819
+ splitDirection?: Cesium.SplitDirection | ((...params: any[]) => any);
21820
+ minificationFilter?: Cesium.TextureMinificationFilter;
21821
+ magnificationFilter?: Cesium.TextureMagnificationFilter;
20738
21822
  maximumAnisotropy?: number;
20739
21823
  cutoutRectangle?: Cesium.Rectangle;
20740
21824
  colorToAlpha?: Cesium.Color;
@@ -23490,7 +24574,7 @@ declare namespace Map {
23490
24574
  * @property [automaticallyTrackDataSourceClocks = true] - 如果为true,则此小部件将自动跟踪新添加的数据源的时钟设置,并在数据源的时钟发生更改时进行更新。如果要独立配置时钟,请将其设置为false。
23491
24575
  * @property [contextOptions = {}] - WebGL创建属性 传递给 Cesium.Scene 的 options 。{@link Cesium.Scene}
23492
24576
  * @property [contextOptions.allowTextureFilterAnisotropic = true] - 允许纹理过滤各向异性
23493
- * @property [contextOptions.requestWebgl2 = false] - 是否启用webgl2
24577
+ * @property [contextOptions.requestWebgl1 = false] - 是否启用webgl1,cesium v1.102起默认用webgl2渲染
23494
24578
  * @property [contextOptions.webgl] - WebGL画布,用于 canvas.getContext("webgl", webglOptions)
23495
24579
  * @property [contextOptions.webgl.alpha = false] - 是否包含alpha缓冲区,如果需要DIV透明时,需要改为true
23496
24580
  * @property [contextOptions.webgl.antialias] - 是否执行抗锯齿
@@ -23571,7 +24655,7 @@ declare namespace Map {
23571
24655
  automaticallyTrackDataSourceClocks?: boolean;
23572
24656
  contextOptions?: {
23573
24657
  allowTextureFilterAnisotropic?: boolean;
23574
- requestWebgl2?: boolean;
24658
+ requestWebgl1?: boolean;
23575
24659
  webgl?: {
23576
24660
  alpha?: boolean;
23577
24661
  antialias?: boolean;
@@ -24029,6 +25113,20 @@ declare class Map extends BaseClass {
24029
25113
  * 是否只拾取地形上的点,忽略模型和矢量数据
24030
25114
  */
24031
25115
  onlyPickTerrainPosition: boolean;
25116
+ /**
25117
+ * 整个Map场景中Cesium3DTiles使用的总显存数量
25118
+ * <pre>
25119
+ * 这个可以设置到显存的50% 左右,合理设置此值可以有效的减少甚至避免 WebGL 由于爆显存而导致的报错。
25120
+ *
25121
+ * 值得注意的是:
25122
+ * 这里设置的最大使用显存并不是一个强制性的值,它仅仅起到一个阈值的作用。
25123
+ * 也就是当场景中 3DTiles 使用的显存超过该值时,才会触发缓存回收机制。
25124
+ * 而缓存回收后,使用的总显存并不一定会降到该值以下。
25125
+ * 比如,在当前相机视角下,3DTiles 需要 200MB 才能达到对应的显示精度,
25126
+ * 而最大使用显存设置到 100MB 时,最终使用的显存将以 Cesium 需要的显存为准,也就是 200MB。
25127
+ * <pre>
25128
+ */
25129
+ tilesetMaxTotalMemory: number;
24032
25130
  /**
24033
25131
  * 获取鼠标事件控制器
24034
25132
  */
@@ -24190,7 +25288,7 @@ declare class Map extends BaseClass {
24190
25288
  * @param [showVal] - 如果传值,覆盖图层的show属性
24191
25289
  * @returns 图层加载完成承诺
24192
25290
  */
24193
- addLayer(layer: BaseLayer, showVal?: boolean): Promise<Boolean | any>;
25291
+ addLayer(layer: BaseLayer, showVal?: boolean): Promise<boolean | any>;
24194
25292
  /**
24195
25293
  * 移除图层
24196
25294
  * @param layer - 需要移除的图层
@@ -24413,7 +25511,7 @@ declare class Map extends BaseClass {
24413
25511
  * 获取当前相机视角参数,
24414
25512
  * 示例:{"lat":30.526361,"lng":116.335987,"alt":45187,"heading":0,"pitch":-45}
24415
25513
  * @param [options = {}] - 参数对象:
24416
- * @param [options.simplify = true] - 是否简化,false时保留角度1位小数位
25514
+ * @param [options.simplify = true] - 是否简化,true时不返回roll并无小数,false时返回roll和保留角度1位小数位
24417
25515
  * @returns 当前相机视角参数
24418
25516
  */
24419
25517
  getCameraView(options?: {
@@ -25205,6 +26303,9 @@ declare class EllipsoidWaveMaterialProperty extends BaseMaterialProperty {
25205
26303
  * @param [options.opacity = 1] - 透明度
25206
26304
  * @param [options.color = Cesium.Color.WHITE] - 颜色
25207
26305
  * @param [options.speed = 0] - 不为0时呈现图片滚动效果,数字代表滚动速度
26306
+ * @param [options.flipx = false] - 是否X方向翻转图片
26307
+ * @param [options.flipy = false] - 是否Y方向翻转图片
26308
+ * @param [options.noWhite = true] - 是否不显示白色,true时没有加载完成前的白色闪烁,但也不支持纯白色的图片
25208
26309
  */
25209
26310
  declare class Image2MaterialProperty extends BaseMaterialProperty {
25210
26311
  constructor(options?: {
@@ -25212,6 +26313,9 @@ declare class Image2MaterialProperty extends BaseMaterialProperty {
25212
26313
  opacity?: number;
25213
26314
  color?: string | Cesium.Color;
25214
26315
  speed?: number;
26316
+ flipx?: boolean;
26317
+ flipy?: boolean;
26318
+ noWhite?: boolean;
25215
26319
  });
25216
26320
  /**
25217
26321
  * 背景图片URL
@@ -25229,6 +26333,18 @@ declare class Image2MaterialProperty extends BaseMaterialProperty {
25229
26333
  * 不为0时呈现图片滚动效果,数字代表滚动速度
25230
26334
  */
25231
26335
  speed: number;
26336
+ /**
26337
+ * 是否X方向翻转图片
26338
+ */
26339
+ flipx: boolean;
26340
+ /**
26341
+ * 是否Y方向翻转图片
26342
+ */
26343
+ flipy: boolean;
26344
+ /**
26345
+ * 是否不显示白色,true时没有加载完成前的白色闪烁,但也不支持纯白色的图片
26346
+ */
26347
+ noWhite: boolean;
25232
26348
  /**
25233
26349
  * 获取 材质名称
25234
26350
  * @param [time] - 检索值的时间。
@@ -25534,6 +26650,76 @@ declare class LineFlowMaterialProperty extends BaseMaterialProperty {
25534
26650
  equals(other?: Cesium.Property): boolean;
25535
26651
  }
25536
26652
 
26653
+ /**
26654
+ * 线状: 三条平行虚线 材质
26655
+ * @param [options] - 参数对象,包括以下:
26656
+ * @param [options.color = Cesium.Color.RED] - 中心线颜色
26657
+ * @param [options.dashLength = 16.0] - 中心线虚线间隔长度,以像素为单位
26658
+ * @param [options.widthRatio = 0.1] - 中心线百分比
26659
+ * @param [options.sidesColor = Cesium.Color.WHITE] - 外侧线颜色
26660
+ * @param [options.sidesDashLength = 32] - 外侧线长度
26661
+ * @param [options.sidesWidthRatio = 0.1] - 外侧线百分比
26662
+ * @param [options.dashPattern = 255.0] - 指定的16位模式
26663
+ */
26664
+ declare class LineThreeDashMaterialProperty extends BaseMaterialProperty {
26665
+ constructor(options?: {
26666
+ color?: Cesium.Color;
26667
+ dashLength?: number;
26668
+ widthRatio?: number;
26669
+ sidesColor?: Cesium.Color;
26670
+ sidesDashLength?: number;
26671
+ sidesWidthRatio?: number;
26672
+ dashPattern?: number;
26673
+ });
26674
+ /**
26675
+ * 中心线颜色
26676
+ */
26677
+ color: Cesium.Color;
26678
+ /**
26679
+ * 中心线虚线间隔长度,以像素为单位
26680
+ */
26681
+ dashLength: number;
26682
+ /**
26683
+ * 中心线百分比
26684
+ */
26685
+ widthRatio: number;
26686
+ /**
26687
+ * 外侧线颜色
26688
+ */
26689
+ sidesColor: Cesium.Color;
26690
+ /**
26691
+ * 外侧线长度
26692
+ */
26693
+ sidesDashLength: number;
26694
+ /**
26695
+ * 外侧线百分比
26696
+ */
26697
+ sidesWidthRatio: number;
26698
+ /**
26699
+ * 指定的16位模式
26700
+ */
26701
+ dashPattern: number;
26702
+ /**
26703
+ * 获取 材质名称
26704
+ * @param [time] - 检索值的时间。
26705
+ * @returns 材质名称
26706
+ */
26707
+ getType(time?: Cesium.JulianDate): string;
26708
+ /**
26709
+ * 获取所提供时间的属性值。
26710
+ * @param [time] - 检索值的时间。
26711
+ * @param [result] - 用于存储值的对象,如果省略,则创建并返回一个新的实例。
26712
+ * @returns 修改的result参数或一个新的实例(如果没有提供result参数)。
26713
+ */
26714
+ getValue(time?: Cesium.JulianDate, result?: any): any;
26715
+ /**
26716
+ * 将此属性与提供的属性进行比较并返回, 如果两者相等返回true,否则为false
26717
+ * @param [other] - 比较的对象
26718
+ * @returns 两者是同一个对象
26719
+ */
26720
+ equals(other?: Cesium.Property): boolean;
26721
+ }
26722
+
25537
26723
  /**
25538
26724
  * 线状: 轨迹线 材质
25539
26725
  * @param [options] - 参数对象,包括以下:
@@ -27546,132 +28732,71 @@ declare namespace Satellite {
27546
28732
  * 卫星综合体 对象类【统一管理卫星模型、轨道、视锥体】,
27547
28733
  * 【需要引入 mars3d-space 插件库】
27548
28734
  * @param options - 参数对象,包括以下:
27549
- * @param options.tle1 - 卫星两行轨道数(TLE) 的tle1, 示例:'1 39150U 13018A 18309.20646405 .00000034 00000-0 12253-4 0 9993'
27550
- * @param options.tle2 - 卫星两行轨道数(TLE) 的tle2, 示例:'2 39150 97.9189 29.2064 0018076 220.9170 139.0692 14.76532215297913'
28735
+ * @param [options.tle1] - 卫星两行轨道数(TLE) 的tle1, 示例:'1 39150U 13018A 18309.20646405 .00000034 00000-0 12253-4 0 9993'
28736
+ * @param [options.tle2] - 卫星两行轨道数(TLE) 的tle2, 示例:'2 39150 97.9189 29.2064 0018076 220.9170 139.0692 14.76532215297913'
27551
28737
  * @param [options.period] - 卫星运行周期(单位:分钟), 未传值时自动在tle2中解析
27552
- * @param options.position - 当没有tle时,自定义传入动态坐标位置(含时序的点集合)
28738
+ * @param [options.position] - 当没有tle时,自定义传入动态坐标位置(含时序的点集合)
27553
28739
  * @param [options.orientation] - 当没有tle时,自定义传入实体方向
27554
- * @param [options.model] - 设置是否显示 gltf卫星模型 和对应的样式,属性还包含:<br />
27555
- * // * @param {Boolean} [options.model.autoHeading=true] heading是否自动为轨道的方向
27556
- * @param [options.cone] - 设置是否显示 卫星视锥体 和对应的样式
28740
+ * @param [options.attr] - 矢量数据的 属性信息,可以任意附加属性。
28741
+ * @param [options.model] - 设置是否显示 gltf卫星模型 和对应的样式
27557
28742
  * @param [options.label] - 设置是否显示 文本 和对应的样式
27558
28743
  * @param [options.billboard] - 设置是否显示 图标点 和对应的样式
27559
28744
  * @param [options.point] - 设置是否显示 像素点 和对应的样式
28745
+ * @param [options.cone] - 设置是否显示 卫星视锥体 和对应的样式
27560
28746
  * @param [options.path] - 设置是否显示 卫星轨迹路线 和对应的样式,属性还包含:<br />
27561
- * // * @param {Boolean} [options.path.closure=false] 是否闭合轨道圆
27562
- * @param [options.shadingLine] - 设置是否显示 星下轨迹 和对应的样式
27563
- * @param [options.fixedFrameTransform] - 参考系
27564
- * @param [options.frameRate = 50] - 多少帧刷新1次,控制效率,如果卡顿就把该数值调大一些。
28747
+ * // * @param {boolean} [options.path.closure=false] 是否闭合轨道圆
28748
+ * @param [options.frameRate = 1] - 多少帧获取一次数据。用于控制效率,如果卡顿就把该数值调大一些。
27565
28749
  * @param [options.id = createGuid()] - 矢量数据id标识
27566
28750
  * @param [options.name = ''] - 矢量数据名称
27567
28751
  * @param [options.show = true] - 矢量数据是否显示
27568
28752
  */
27569
- declare class Satellite extends BaseGraphic {
28753
+ declare class Satellite extends Route {
27570
28754
  constructor(options: {
27571
- tle1: string;
27572
- tle2: string;
28755
+ tle1?: string;
28756
+ tle2?: string;
27573
28757
  period?: number;
27574
- position: Cesium.SampledPositionProperty;
28758
+ position?: Cesium.SampledPositionProperty;
27575
28759
  orientation?: Cesium.Property;
28760
+ attr?: any;
27576
28761
  model?: ModelEntity.StyleOptions | any;
27577
- cone?: SatelliteSensor.StyleOptions | any;
27578
28762
  label?: LabelEntity.StyleOptions | any;
27579
28763
  billboard?: BillboardEntity.StyleOptions | any;
27580
28764
  point?: PointEntity.StyleOptions | any;
28765
+ cone?: SatelliteSensor.StyleOptions | any | any;
27581
28766
  path?: PolylineEntity.StyleOptions | any;
27582
- shadingLine?: BillboardEntity.StyleOptions | any;
27583
- fixedFrameTransform?: Cesium.Transforms.LocalFrameToFixedFrame;
27584
28767
  frameRate?: number;
27585
28768
  id?: string | number;
27586
28769
  name?: string;
27587
28770
  show?: boolean;
27588
28771
  });
27589
- /**
27590
- * 加载Entity数据的内部Cesium容器
27591
- */
27592
- readonly dataSource: Cesium.CustomDataSource;
27593
28772
  /**
27594
28773
  * 卫星TLE算法类对象
27595
28774
  */
27596
28775
  readonly tle: Tle;
27597
28776
  /**
27598
- * 圆锥的角度或者四棱锥的第一个角度,半场角度,取值范围 0.1-89.9
28777
+ * 获取当前已计算的轨道的开始时间和结束时间,格式为{start:'2021-01-01 00:00:00',end:'2021-01-01 12:01:02'}
27599
28778
  */
27600
- angle1: number;
28779
+ readonly timeRange: any;
27601
28780
  /**
27602
- * 四棱锥的第二个角度,半场角度,取值范围 0.1-89.9
28781
+ * 卫星视锥体(圆锥或四凌锥) 子对象
27603
28782
  */
27604
- angle2: number;
28783
+ cone: SatelliteSensor | SatelliteSensor[] | any;
27605
28784
  /**
27606
- * 四周方向角,0-360度角度值
27607
- */
27608
- heading: number;
27609
- /**
27610
- * 俯仰角,上下摇摆的角度,0-360度角度值
28785
+ * 圆锥的角度或者四棱锥的第一个角度,半场角度,取值范围 0.1-89.9
27611
28786
  */
27612
- pitch: number;
28787
+ angle1: number;
27613
28788
  /**
27614
- * 滚转角,左右摆动的角度,0-360度角度值
28789
+ * 四棱锥的第二个角度,半场角度,取值范围 0.1-89.9
27615
28790
  */
27616
- roll: number;
28791
+ angle2: number;
27617
28792
  /**
27618
28793
  * 是否显示视锥体
27619
28794
  */
27620
28795
  coneShow: boolean;
27621
- /**
27622
- * 当前时间的卫星位置坐标 (笛卡尔坐标)
27623
- */
27624
- position: Cesium.Cartesian3;
27625
- /**
27626
- * 获取当前时间转换计算模型矩阵。如果方向或位置未定义,则返回undefined。
27627
- */
27628
- readonly modelMatrix: Cesium.Matrix4;
27629
- /**
27630
- * 获取卫星方向 中心射线与地球相交点
27631
- */
27632
- readonly groundPosition: Cesium.Cartesian3;
27633
- /**
27634
- * 获取当前已计算的轨道的开始时间和结束时间,格式为{start:'2021-01-01 00:00:00',end:'2021-01-01 12:01:02'}
27635
- */
27636
- readonly timeRange: any;
27637
28796
  /**
27638
28797
  * 卫星凝视的目标(卫星方向一直朝向这个目标所在位置)
27639
28798
  */
27640
28799
  lookAt: Cesium.Cartesian3 | Cesium.PositionProperty;
27641
- /**
27642
- * 是否显示3个方向轴,用于对比测试
27643
- */
27644
- debugAxis: boolean;
27645
- /**
27646
- * 显示3个方向轴时的对应轴长度,用于对比测试
27647
- */
27648
- debugAxisLength: number;
27649
- /**
27650
- * 重新赋值参数,同构造方法参数一致。
27651
- * @param options - 参数,与类的构造方法参数相同
27652
- * @returns 无
27653
- */
27654
- setOptions(options: any): void;
27655
- /**
27656
- * 单击轨迹连线上的点后,求该点对应的时间
27657
- * @param position - 轨迹连线上的某点
27658
- * @param [arr] - 轨迹的原始数组,默认为内部记录的轨迹
27659
- * @returns 对应的时间
27660
- */
27661
- getPointTime(position: Cesium.Cartesian3, arr?: any): Date;
27662
- /**
27663
- * 更新角度
27664
- * @param [newangle] - 新角度值
27665
- * @param [newangle.heading = 0] - 方向角 (度数值,0-360度),如 model.autoHeading 为true,传入值无效
27666
- * @param [newangle.pitch = 0] - 俯仰角(度数值,0-360度)
27667
- * @param [newangle.roll = 0] - 翻滚角(度数值,0-360度)
27668
- * @returns 无
27669
- */
27670
- updateOrientation(newangle?: {
27671
- heading?: number;
27672
- pitch?: number;
27673
- roll?: number;
27674
- }): void;
27675
28800
  /**
27676
28801
  * 定位到卫星当前所在位置
27677
28802
  * @param [options = {}] - 具有以下属性的对象:
@@ -27690,7 +28815,7 @@ declare class Satellite extends BaseGraphic {
27690
28815
  * @param [options.easingFunction] - 控制在飞行过程中如何插值时间。
27691
28816
  * @returns 如果飞行成功则解析为true的承诺,如果当前未在场景中可视化目标或取消飞行,则为false的Promise
27692
28817
  */
27693
- flyTo(options?: {
28818
+ flyToPoint(options?: {
27694
28819
  scale?: number;
27695
28820
  heading?: number;
27696
28821
  pitch?: number;
@@ -27705,14 +28830,6 @@ declare class Satellite extends BaseGraphic {
27705
28830
  flyOverLongitudeWeight?: number;
27706
28831
  easingFunction?: Cesium.EasingFunction.Callback;
27707
28832
  }): Promise<boolean>;
27708
- /**
27709
- * 矢量数据对应的 Cesium内部对象 (不同子类中实现)
27710
- */
27711
- readonly czmObject: Cesium.Entity | Cesium.Primitive | Cesium.GroundPrimitive | Cesium.ClassificationPrimitive | any;
27712
- /**
27713
- * 当前类的构造参数
27714
- */
27715
- readonly options: any;
27716
28833
  }
27717
28834
 
27718
28835
  declare namespace SatelliteSensor {
@@ -27773,8 +28890,6 @@ declare namespace SatelliteSensor {
27773
28890
  * @param options.style - 样式信息
27774
28891
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
27775
28892
  * @param [options.lookAt] - 椎体方向追踪的目标(椎体方向跟随变化,位置不变)
27776
- * @param [options.trackedEntity] - 椎体跟随的卫星(椎体位置跟随变化,方向不变)
27777
- * @param [options.autoHeading] - 是否自动追踪trackedEntity目标的heading方向
27778
28893
  * @param [options.fixedFrameTransform] - 参考系
27779
28894
  * @param [options.reverse = false] - 是否反转朝向
27780
28895
  * @param [options.id = createGuid()] - 矢量数据id标识
@@ -27788,8 +28903,6 @@ declare class SatelliteSensor extends BasePointPrimitive {
27788
28903
  style: SatelliteSensor.StyleOptions | any;
27789
28904
  attr?: any;
27790
28905
  lookAt?: Cesium.Cartesian3 | Cesium.PositionProperty;
27791
- trackedEntity?: Cesium.Entity;
27792
- autoHeading?: boolean;
27793
28906
  fixedFrameTransform?: Cesium.Transforms.LocalFrameToFixedFrame;
27794
28907
  reverse?: boolean;
27795
28908
  id?: string | number;
@@ -27836,10 +28949,6 @@ declare class SatelliteSensor extends BasePointPrimitive {
27836
28949
  * 是否显示边线
27837
28950
  */
27838
28951
  outline: boolean;
27839
- /**
27840
- * 椎体跟随的卫星(椎体位置跟随变化,方向不变)
27841
- */
27842
- trackedEntity: Cesium.Entity | ModelEntity;
27843
28952
  /**
27844
28953
  * 椎体方向追踪的目标(椎体方向跟随变化,位置不变)
27845
28954
  */
@@ -27872,10 +28981,6 @@ declare class SatelliteSensor extends BasePointPrimitive {
27872
28981
  * @returns 成像区坐标,经、纬度坐标数组
27873
28982
  */
27874
28983
  getAreaCoords(): any[][];
27875
- /**
27876
- * 位置坐标 (笛卡尔坐标), 赋值时可以传入LatLngPoint对象
27877
- */
27878
- position: Cesium.Cartesian3 | LngLatPoint;
27879
28984
  }
27880
28985
 
27881
28986
  /**
@@ -30112,7 +31217,7 @@ declare class Measure extends BaseThing {
30112
31217
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
30113
31218
  * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
30114
31219
  * @param [options.showAddText = true] - 是否显示每一段的增加部分距离,如(+10.1km)
30115
- * @param [options.splitNum = 100] - 插值数,将线段分割的个数
31220
+ * @param [options.splitNum = 100] - 插值数,将线段分割的个数(概略值,有经纬网网格来插值)
30116
31221
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
30117
31222
  * @param [options.exact = true] - 是否进行精确计算, 传false时是否快速概略计算方式,该方式计算精度较低,但计算速度快,仅能计算在当前视域内坐标的高度
30118
31223
  * @param [options.decimal = 2] - 显示的文本中保留的小数位
@@ -30136,7 +31241,7 @@ declare class Measure extends BaseThing {
30136
31241
  * @param [options.unit = 'auto'] - 计量单位,{@link MeasureUtil#formatDistance}可选值:auto、m、km、wm、mile、zhang 等。auto时根据距离值自动选用k或km
30137
31242
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
30138
31243
  * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
30139
- * @param [options.splitNum = 200] - 插值数,将线段分割的个数
31244
+ * @param [options.splitNum = 200] - 插值数,将线段分割的个数(概略值,有经纬网网格来插值)
30140
31245
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
30141
31246
  * @param [options.exact = true] - 是否进行精确计算, 传false时是否快速概略计算方式,该方式计算精度较低,但计算速度快,仅能计算在当前视域内坐标的高度
30142
31247
  * @param [options.decimal = 2] - 显示的文本中保留的小数位
@@ -30170,7 +31275,7 @@ declare class Measure extends BaseThing {
30170
31275
  * @param [options] - 控制参数
30171
31276
  * @param [options.style] - 面的样式
30172
31277
  * @param [options.unit = 'auto'] - 计量单位,{@link MeasureUtil#formatArea}可选值:auto、m、km、mu、ha 。auto时根据面积值自动选用k或km
30173
- * @param [options.splitNum = 10] - 插值数,将面分割的网格数
31278
+ * @param [options.splitNum = 10] - 插值数,将面分割的网格数(概略值,有经纬网网格来插值)
30174
31279
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
30175
31280
  * @param [options.decimal = 2] - 显示的文本中保留的小数位
30176
31281
  * @param [options.exact = true] - 是否进行精确计算, 传false时是否快速概略计算方式,该方式计算精度较低,但计算速度快,仅能计算在当前视域内坐标的高度
@@ -30189,7 +31294,7 @@ declare class Measure extends BaseThing {
30189
31294
  * @param [options] - 控制参数
30190
31295
  * @param [options.style] - 基准面的样式
30191
31296
  * @param [options.unit = 'auto'] - 计量单位,{@link MeasureUtil#formatArea}可选值:auto、m、km、mu、ha 。auto时根据面积值自动选用k或km
30192
- * @param [options.splitNum = 10] - 插值数,将面分割的网格数
31297
+ * @param [options.splitNum = 10] - 插值数,将面分割的网格数(概略值,有经纬网网格来插值)
30193
31298
  * @param [options.has3dtiles] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
30194
31299
  * @param [options.exact = true] - 是否进行精确计算, 传false时是否快速概略计算方式,该方式计算精度较低,但计算速度快,仅能计算在当前视域内坐标的高度
30195
31300
  * @param [options.minHeight] - 可以指定最低高度(单位:米)
@@ -30201,6 +31306,7 @@ declare class Measure extends BaseThing {
30201
31306
  * @param [options.polygonWall] - 围合的墙样式
30202
31307
  * @param [options.labelHeight] - 各边界点高度结果文本的样式
30203
31308
  * @param [options.decimal = 2] - 显示的文本中保留的小数位
31309
+ * @param [options.depth = false] - 是否采用 {@link VolumeDepthMeasure}进行分析
30204
31310
  * @returns 绘制创建完成的Promise,返回 体积测量控制类 对象
30205
31311
  */
30206
31312
  volume(options?: {
@@ -30218,6 +31324,7 @@ declare class Measure extends BaseThing {
30218
31324
  polygonWall?: PolygonEntity.StyleOptions | any;
30219
31325
  labelHeight?: LabelEntity.StyleOptions | any;
30220
31326
  decimal?: number;
31327
+ depth?: boolean;
30221
31328
  }): Promise<VolumeMeasure | any>;
30222
31329
  /**
30223
31330
  * 高度测量
@@ -30450,7 +31557,7 @@ declare class Sightline extends BaseThing {
30450
31557
  * @param target - 终点(目标点)
30451
31558
  * @param [options = {}] - 控制参数,包括:
30452
31559
  * @param [options.offsetHeight = 0] - 在起点增加的高度值,比如加上人的身高
30453
- * @param [options.splitNum = 50] - 插值数,等比分割的个数
31560
+ * @param [options.splitNum = 50] - 插值数,等比分割的个数(概略值,有经纬网网格来插值)
30454
31561
  * @param [options.minDistance] - 插值时的最小间隔(单位:米),优先级高于splitNum
30455
31562
  * @returns 分析结果完成的Promise
30456
31563
  */
@@ -30923,7 +32030,7 @@ declare class MatrixRotate extends MatrixMove {
30923
32030
  * @param [options.enabled = true] - 对象的启用状态
30924
32031
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
30925
32032
  */
30926
- declare class ContourLine extends TerrainEditBase {
32033
+ declare class ContourLine extends TerrainOldEditBase {
30927
32034
  constructor(options?: {
30928
32035
  positions?: any[][] | string[] | LngLatPoint[] | Cesium.Cartesian3[];
30929
32036
  contourShow?: boolean;
@@ -31101,7 +32208,7 @@ declare namespace FloodByMaterial {
31101
32208
  * @param [options.enabled = true] - 对象的启用状态
31102
32209
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
31103
32210
  */
31104
- declare class FloodByMaterial extends TerrainEditBase {
32211
+ declare class FloodByMaterial extends TerrainOldEditBase {
31105
32212
  constructor(options?: {
31106
32213
  positions?: any[][] | string[] | LngLatPoint[] | Cesium.Cartesian3[];
31107
32214
  speed?: number;
@@ -31220,7 +32327,7 @@ declare class Slope extends BaseThing {
31220
32327
  * 添加计算的 位置
31221
32328
  * @param positions - 坐标数组 或 单个坐标
31222
32329
  * @param [options = {}] - 控制参数,包括:
31223
- * @param [options.splitNum = 8] - 插值数,横纵等比分割的网格个数
32330
+ * @param [options.splitNum = 8] - 插值数,横纵等比分割的网格个数(概略值,有经纬网网格来插值)
31224
32331
  * @param [options.radius = 2] - 取样分析,点周边半径(单位:米)
31225
32332
  * @param [options.count = 4] - 取样分析,点周边象限内点的数量,共计算 count*4 个点
31226
32333
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
@@ -31316,12 +32423,12 @@ declare type getSlope_endItem = (event: {
31316
32423
  * @param [options.image] - 开挖区域的井墙面贴图URL。未传入该值时,不显示开挖区域的井。
31317
32424
  * @param [options.imageBottom] - 当显示开挖区域的井时,井底面贴图URL
31318
32425
  * @param [options.diffHeight] - 当显示开挖区域的井时,设置所有区域的挖掘深度(单位:米)
31319
- * @param [options.splitNum = 30] - 当显示开挖区域的井时,井墙面每两点之间插值个数
32426
+ * @param [options.splitNum = 30] - 当显示开挖区域的井时,井墙面每两点之间插值个数(概略值,有经纬网网格来插值)
31320
32427
  * @param [options.id = createGuid()] - 对象的id标识
31321
32428
  * @param [options.enabled = true] - 对象的启用状态
31322
32429
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
31323
32430
  */
31324
- declare class TerrainClip extends TerrainEditBase {
32431
+ declare class TerrainClip extends TerrainOldEditBase {
31325
32432
  constructor(options?: {
31326
32433
  positions?: any[][] | string[] | LngLatPoint[] | Cesium.Cartesian3[];
31327
32434
  clipOutSide?: boolean;
@@ -31356,7 +32463,7 @@ declare class TerrainClip extends TerrainEditBase {
31356
32463
  * @param [options.enabled = true] - 对象的启用状态
31357
32464
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
31358
32465
  */
31359
- declare class TerrainEditBase extends BaseThing {
32466
+ declare class TerrainOldEditBase extends BaseThing {
31360
32467
  constructor(options?: {
31361
32468
  positions?: any[][] | string[] | LngLatPoint[] | Cesium.Cartesian3[];
31362
32469
  id?: string | number;
@@ -31464,6 +32571,132 @@ declare class TerrainPlanClip extends BaseThing {
31464
32571
  clear(): void;
31465
32572
  }
31466
32573
 
32574
+ /**
32575
+ * 地形压平、抬升、开挖 基础类
32576
+ * @param [options] - 参数对象,包括以下:
32577
+ * @param [options.area] - 多区域数组对象, 示例: [{ positions: [[108.959062, 34.220134, 397], [108.959802, 34.220147, 397], [108.959106, 34.21953, 398]] }]
32578
+ * @param [options.id = createGuid()] - 对象的id标识
32579
+ * @param [options.enabled = true] - 对象的启用状态
32580
+ * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
32581
+ */
32582
+ declare class TerrainEditBase extends BaseThing {
32583
+ constructor(options?: {
32584
+ area?: any;
32585
+ id?: string | number;
32586
+ enabled?: boolean;
32587
+ eventParent?: BaseClass | boolean;
32588
+ });
32589
+ /**
32590
+ * 区域 列表
32591
+ */
32592
+ readonly list: any;
32593
+ /**
32594
+ * 已添加的区域个数
32595
+ */
32596
+ readonly length: number;
32597
+ /**
32598
+ * 清除所有区域
32599
+ * @returns 无
32600
+ */
32601
+ clear(): void;
32602
+ /**
32603
+ * 根据id获取区域对象
32604
+ * @param id - id值
32605
+ * @returns 区域对象
32606
+ */
32607
+ getAreaById(id: number): any;
32608
+ /**
32609
+ * 隐藏单个区域
32610
+ * @param id - 区域id值
32611
+ * @returns 无
32612
+ */
32613
+ hideArea(id: number): void;
32614
+ /**
32615
+ * 显示单个区域
32616
+ * @param id - 区域id值
32617
+ * @returns 无
32618
+ */
32619
+ showArea(id: number): void;
32620
+ /**
32621
+ * 移除单个区域
32622
+ * @param item - 区域的id值,或 addArea返回的区域对象
32623
+ * @returns 无
32624
+ */
32625
+ removeArea(item: number | any): void;
32626
+ /**
32627
+ * 添加单个区域
32628
+ * @param positions - 坐标位置数组
32629
+ * @param [options = {}] - 控制的参数
32630
+ * @param [options.height] - 高度值
32631
+ * @returns 添加区域的记录对象
32632
+ */
32633
+ addArea(positions: string[] | any[][] | LngLatPoint[] | Cesium.Cartesian3[], options?: {
32634
+ height?: any;
32635
+ }): any;
32636
+ }
32637
+
32638
+ /**
32639
+ * 地形压平
32640
+ * @param [options] - 参数对象,包括以下:
32641
+ * @param [options.area] - 多区域数组对象, 示例: [{ positions: [[108.959062, 34.220134, 397], [108.959802, 34.220147, 397], [108.959106, 34.21953, 398]] }]
32642
+ * @param [options.id = createGuid()] - 对象的id标识
32643
+ * @param [options.enabled = true] - 对象的启用状态
32644
+ * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
32645
+ */
32646
+ declare class TerrainFlat extends TerrainEditBase {
32647
+ constructor(options?: {
32648
+ area?: any;
32649
+ id?: string | number;
32650
+ enabled?: boolean;
32651
+ eventParent?: BaseClass | boolean;
32652
+ });
32653
+ /**
32654
+ * 清除压平
32655
+ * @returns 无
32656
+ */
32657
+ clear(): void;
32658
+ }
32659
+
32660
+ /**
32661
+ * 地形抬升
32662
+ * @param [options] - 参数对象,包括以下:
32663
+ * @param [options.area] - 多区域数组对象, 示例: [{ positions: [[108.959062, 34.220134, 397], [108.959802, 34.220147, 397], [108.959106, 34.21953, 398]] }]
32664
+ * @param [options.upHeight] - 设置所有区域的抬升高度(单位:米),目前不支持单个区域的高度自定义。
32665
+ * @param [options.image] - 开挖区域的井墙面贴图URL。未传入该值时,不显示开挖区域的井。
32666
+ * @param [options.imageBottom] - 当显示开挖区域的井时,井底面贴图URL
32667
+ * @param [options.diffHeight] - 当显示开挖区域的井时,设置所有区域的挖掘深度(单位:米)
32668
+ * @param [options.splitNum = 30] - 当显示开挖区域的井时,井墙面每两点之间插值个数(概略值,有经纬网网格来插值)
32669
+ * @param [options.id = createGuid()] - 对象的id标识
32670
+ * @param [options.enabled = true] - 对象的启用状态
32671
+ * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
32672
+ */
32673
+ declare class TerrainUplift extends TerrainEditBase {
32674
+ constructor(options?: {
32675
+ area?: any;
32676
+ upHeight?: number;
32677
+ image?: string;
32678
+ imageBottom?: string;
32679
+ diffHeight?: number;
32680
+ splitNum?: number;
32681
+ id?: string | number;
32682
+ enabled?: boolean;
32683
+ eventParent?: BaseClass | boolean;
32684
+ });
32685
+ /**
32686
+ * 是否显示抬升区,为false时效果类同 地形开挖 的效果
32687
+ */
32688
+ showUp: boolean;
32689
+ /**
32690
+ * 设置所有区域的抬升高度(单位:米),目前不支持单个区域的高度自定义。
32691
+ */
32692
+ upHeight: number;
32693
+ /**
32694
+ * 清除抬升
32695
+ * @returns 无
32696
+ */
32697
+ clear(): void;
32698
+ }
32699
+
31467
32700
  /**
31468
32701
  * 限高分析
31469
32702
  * @param [options] - 参数对象,包括以下:
@@ -31647,10 +32880,6 @@ declare class TilesetClip extends TilesetEditBase {
31647
32880
  enabled?: boolean;
31648
32881
  eventParent?: BaseClass | boolean;
31649
32882
  });
31650
- /**
31651
- * 是否外裁剪
31652
- */
31653
- clipOutSide: boolean;
31654
32883
  }
31655
32884
 
31656
32885
  /**
@@ -31682,10 +32911,6 @@ declare class TilesetEditBase extends BaseThing {
31682
32911
  * 需要分析的模型 对应的 Cesium3DTileset 对象
31683
32912
  */
31684
32913
  readonly tileset: Cesium.Cesium3DTileset;
31685
- /**
31686
- * 压平高度 (单位:米),基于压平区域最低点高度的偏移量
31687
- */
31688
- readonly layerHeight: number;
31689
32914
  /**
31690
32915
  * 已添加的区域个数
31691
32916
  */
@@ -31695,84 +32920,6 @@ declare class TilesetEditBase extends BaseThing {
31695
32920
  * @returns 无
31696
32921
  */
31697
32922
  clear(): void;
31698
- /**
31699
- * 根据id获取区域对象
31700
- * @param id - id值
31701
- * @returns 区域对象
31702
- */
31703
- getAreaById(id: number): any;
31704
- /**
31705
- * 隐藏单个区域
31706
- * @param id - 区域id值
31707
- * @returns 无
31708
- */
31709
- hideArea(id: number): void;
31710
- /**
31711
- * 显示单个区域
31712
- * @param id - 区域id值
31713
- * @returns 无
31714
- */
31715
- showArea(id: number): void;
31716
- /**
31717
- * 移除单个区域
31718
- * @param item - 区域的id,或 addArea返回的区域对象
31719
- * @returns 无
31720
- */
31721
- removeArea(item: number | any): void;
31722
- /**
31723
- * 添加区域
31724
- * @param positions - 坐标位置数组
31725
- * @returns 添加区域的记录对象
31726
- */
31727
- addArea(positions: string[] | any[][] | LngLatPoint[] | Cesium.Cartesian3[]): any;
31728
- /**
31729
- * 转为Json简单对象,用于存储后再传参加载
31730
- * @returns Json简单对象
31731
- */
31732
- toJSON(): any;
31733
- }
31734
-
31735
- /**
31736
- * 3dtiles模型压平
31737
- * @param [options] - 参数对象,包括以下:
31738
- * @param options.layer - 需要压平的对象(3dtiles图层)
31739
- * @param [options.area] - 多区域数组对象, 示例: [{ positions: [[108.959062, 34.220134, 397], [108.959802, 34.220147, 397], [108.959106, 34.21953, 398]] }]
31740
- * @param [options.flatHeight] - 模型基准高度(单位:米),基于压平区域最低点高度的纠偏,也支持定义在模型图层中
31741
- * @param [options.old] - 使用老版本压平,即内部自动使用{@link TilesetFlatOld}类
31742
- * @param [options.id = createGuid()] - 对象的id标识
31743
- * @param [options.enabled = true] - 对象的启用状态
31744
- * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
31745
- */
31746
- declare class TilesetFlat extends TilesetEditBase {
31747
- constructor(options?: {
31748
- layer: TilesetLayer;
31749
- area?: any;
31750
- flatHeight?: number;
31751
- old?: boolean;
31752
- id?: string | number;
31753
- enabled?: boolean;
31754
- eventParent?: BaseClass | boolean;
31755
- });
31756
- /**
31757
- * 区域 列表
31758
- */
31759
- readonly list: any;
31760
- /**
31761
- * 需要分析的模型(3dtiles图层)
31762
- */
31763
- layer: TilesetLayer;
31764
- /**
31765
- * 需要分析的模型 对应的 Cesium3DTileset 对象
31766
- */
31767
- readonly tileset: Cesium.Cesium3DTileset;
31768
- /**
31769
- * 压平高度 (单位:米),基于压平区域最低点高度的偏移量
31770
- */
31771
- readonly layerHeight: number;
31772
- /**
31773
- * 已添加的区域个数
31774
- */
31775
- readonly length: number;
31776
32923
  /**
31777
32924
  * 添加单个区域
31778
32925
  * @param positions - 坐标位置数组
@@ -31782,19 +32929,13 @@ declare class TilesetFlat extends TilesetEditBase {
31782
32929
  */
31783
32930
  addArea(positions: string[] | any[][] | LngLatPoint[] | Cesium.Cartesian3[], options?: {
31784
32931
  height?: any;
31785
- }): Promise<any>;
32932
+ }): any;
31786
32933
  /**
31787
32934
  * 根据id获取区域对象
31788
32935
  * @param id - id值
31789
32936
  * @returns 区域对象
31790
32937
  */
31791
32938
  getAreaById(id: number): any;
31792
- /**
31793
- * 更新压平高度 (单位:米)
31794
- * @param height - 高度值(单位:米)
31795
- * @param [id] - 区域对象id
31796
- */
31797
- updateHeight(height: number, id?: number): void;
31798
32939
  /**
31799
32940
  * 隐藏单个区域
31800
32941
  * @param id - 区域id值
@@ -31818,11 +32959,6 @@ declare class TilesetFlat extends TilesetEditBase {
31818
32959
  * @returns Json简单对象
31819
32960
  */
31820
32961
  toJSON(): any;
31821
- /**
31822
- * 清除分析
31823
- * @returns 无
31824
- */
31825
- clear(): void;
31826
32962
  }
31827
32963
 
31828
32964
  /**
@@ -31830,16 +32966,18 @@ declare class TilesetFlat extends TilesetEditBase {
31830
32966
  * @param [options] - 参数对象,包括以下:
31831
32967
  * @param options.layer - 需要压平的对象(3dtiles图层)
31832
32968
  * @param [options.area] - 多区域数组对象, 示例: [{ positions: [[108.959062, 34.220134, 397], [108.959802, 34.220147, 397], [108.959106, 34.21953, 398]] }]
31833
- * @param [options.height] - 压平高度 (单位:米),基于压平区域最低点高度的偏移量
32969
+ * @param [options.flatHeight] - 模型基准高度(单位:米),基于压平区域最低点高度的纠偏,也支持定义在模型图层中
32970
+ * @param [options.raise = true] - 是否开启区域抬高
31834
32971
  * @param [options.id = createGuid()] - 对象的id标识
31835
32972
  * @param [options.enabled = true] - 对象的启用状态
31836
32973
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
31837
32974
  */
31838
- declare class TilesetFlatOld extends TilesetEditBase {
32975
+ declare class TilesetFlat extends TilesetEditBase {
31839
32976
  constructor(options?: {
31840
32977
  layer: TilesetLayer;
31841
32978
  area?: any;
31842
- height?: number;
32979
+ flatHeight?: number;
32980
+ raise?: boolean;
31843
32981
  id?: string | number;
31844
32982
  enabled?: boolean;
31845
32983
  eventParent?: BaseClass | boolean;
@@ -31847,12 +32985,13 @@ declare class TilesetFlatOld extends TilesetEditBase {
31847
32985
  /**
31848
32986
  * 压平高度 (单位:米),基于压平区域最低点高度的偏移量
31849
32987
  */
31850
- height: number;
32988
+ readonly layerHeight: number;
31851
32989
  /**
31852
- * 更新压平高度 (单位:米)
31853
- * @param height - 高度值(单位:米)
32990
+ * 更新压平高度
32991
+ * @param height - 压平高度,单位:米
32992
+ * @param [id] - 指定更新的区域id,为空时更新所有
31854
32993
  */
31855
- updateHeight(height: number): void;
32994
+ updateHeight(height: number, id?: number): void;
31856
32995
  }
31857
32996
 
31858
32997
  declare namespace TilesetFlood {
@@ -31917,12 +33056,6 @@ declare class TilesetFlood extends TilesetEditBase {
31917
33056
  * 淹没颜色
31918
33057
  */
31919
33058
  color: Cesium.Color;
31920
- /**
31921
- * 重新赋值参数,同构造方法参数一致。
31922
- * @param options - 参数,与类的构造方法参数相同
31923
- * @returns 当前对象本身,可以链式调用
31924
- */
31925
- setOptions(options: any): TilesetFlood;
31926
33059
  /**
31927
33060
  * 开始播放淹没动画效果
31928
33061
  * @returns 无
@@ -31957,7 +33090,7 @@ declare class TilesetFlood extends TilesetEditBase {
31957
33090
  * @param [options.clipOutSide = false] - 是否外裁剪
31958
33091
  * @param [options.edgeWidth = 0] - 裁剪区域边线宽度,0时不显示
31959
33092
  * @param [options.edgeColor = Cesium.Color.WHITE] - 裁剪区域边线颜色
31960
- * @param [options.showPlane = false] - 是否显示裁剪平面
33093
+ * @param [options.showPlane = false] - 是否显示裁剪平面, PS: 但裁剪面与实际效果由于cesium内部机制不同可能存在偏移。
31961
33094
  * @param [options.editPlane = false] - 是否可以拖拽裁剪平面进行编辑,需要showPlane:true时有效
31962
33095
  * @param [options.planeStyle] - 裁剪平面显示时的样式
31963
33096
  * @param [options.id = createGuid()] - 对象的id标识
@@ -32985,6 +34118,28 @@ declare namespace MaterialUtil {
32985
34118
  * @returns json简单对象
32986
34119
  */
32987
34120
  function toJSONByType(materialType: string, materialOptions: any): any;
34121
+ /**
34122
+ * 给 Material 添加一个 Texture uniform
34123
+ * @param options - 参数
34124
+ * @param options.material - 材质对象
34125
+ * @param options.context - 取 map.scene.context
34126
+ * @param options.uniformName - Uniform 名
34127
+ * @param options.image - 图片的地址
34128
+ * @param [options.wrapS = Cesium.TextureWrap.REPEAT] - 纹理参数,决定纹理坐标 S 方向上超出 [0, 1] 时如何抽样。
34129
+ * @param [options.wrapT = Cesium.TextureWrap.REPEAT] - 纹理参数,决定纹理坐标 T 方向上超出 [0, 1] 时如何抽样。
34130
+ * @param [options.minificationFilter = Cesium.TextureMinificationFilter.LINEAR] - 纹理参数,决定纹理缩小时如何抽样,
34131
+ * @param [options.magnificationFilter = Cesium.TextureMagnificationFilter.LINEAR] - 纹理参数,决定纹理放大时如何抽样,
34132
+ */
34133
+ function addTextureUniform(options: {
34134
+ material: Cesium.Material;
34135
+ context: any;
34136
+ uniformName: string;
34137
+ image: string;
34138
+ wrapS?: number;
34139
+ wrapT?: number;
34140
+ minificationFilter?: Cesium.TextureMinificationFilter | number;
34141
+ magnificationFilter?: Cesium.TextureMagnificationFilter | number;
34142
+ }): void;
32988
34143
  }
32989
34144
 
32990
34145
  /**
@@ -33032,7 +34187,7 @@ declare namespace MeasureUtil {
33032
34187
  * @param positions - 坐标数组
33033
34188
  * @param options - 参数对象,具有以下属性:
33034
34189
  * @param options.scene - 三维地图场景对象,一般用map.scene或viewer.scene
33035
- * @param [options.splitNum = 100] - 插值数,将线段分割的个数
34190
+ * @param [options.splitNum = 100] - 插值数,将线段分割的个数(概略值,有经纬网网格来插值)
33036
34191
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
33037
34192
  * @param [options.exact = true] - 是否进行精确计算, 传false时是否快速概略计算方式,该方式计算精度较低,但计算速度快,仅能计算在当前视域内坐标的高度
33038
34193
  * @param options.endItem - 异步计算贴地距离中,每计算完成2个点之间的距离后 的回调方法
@@ -33072,7 +34227,7 @@ declare namespace MeasureUtil {
33072
34227
  * @param positions - 坐标数组
33073
34228
  * @param options - 参数对象,具有以下属性:
33074
34229
  * @param options.scene - 三维地图场景对象,一般用map.scene或viewer.scene
33075
- * @param [options.splitNum = 10] - 插值数,将面分割的网格数
34230
+ * @param [options.splitNum = 10] - 插值数,将面分割的网格数(概略值,有经纬网网格来插值)
33076
34231
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
33077
34232
  * @param [options.exact = true] - 是否进行精确计算, 传false时是否快速概略计算方式,该方式计算精度较低,但计算速度快,仅能计算在当前视域内坐标的高度
33078
34233
  * @returns 异步计算完成的Promise
@@ -33541,6 +34696,13 @@ declare namespace PointUtil {
33541
34696
  * @returns Heading Pitch Roll方向
33542
34697
  */
33543
34698
  function getHeadingPitchRollForLine(localStart: Cesium.Cartesian3 | LngLatPoint, localEnd: Cesium.Cartesian3 | LngLatPoint, ellipsoid?: Cesium.Ellipsoid, fixedFrameTransform?: Cesium.Transforms.LocalFrameToFixedFrame): Cesium.HeadingPitchRoll;
34699
+ /**
34700
+ * 获取反射向量
34701
+ * @param view - 视角方向
34702
+ * @param normal - 法线方向
34703
+ * @returns 反射向量
34704
+ */
34705
+ function getReflectVector(view: Cesium.Cartesian3, normal: Cesium.Cartesian3): Cesium.Cartesian3;
33544
34706
  }
33545
34707
 
33546
34708
  /**
@@ -33600,7 +34762,7 @@ declare namespace PolyUtil {
33600
34762
  * @param [options = {}] - 参数对象:
33601
34763
  * @param options.scene - 三维地图场景对象,一般用map.scene或viewer.scene
33602
34764
  * @param options.positions - 坐标数组
33603
- * @param [options.splitNum = 10] - 插值数,横纵等比分割的网格个数
34765
+ * @param [options.splitNum = 10] - 插值数,横纵等比分割的网格个数(概略值,有经纬网网格来插值)
33604
34766
  * @param [options.exact = false] - 是否进行精确计算
33605
34767
  * @param [options.has3dtiles] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
33606
34768
  * @param [options.objectsToExclude] - 贴模型分析时,排除的不进行贴模型计算的模型对象,可以是: primitives, entities, 或 3D Tiles features
@@ -33621,7 +34783,7 @@ declare namespace PolyUtil {
33621
34783
  * @param positions - 坐标数组
33622
34784
  * @param scene - 三维地图场景对象,一般用map.scene
33623
34785
  * @param [options = {}] - 参数对象:
33624
- * @param [options.splitNum = 10] - 插值数,横纵等比分割的网格个数
34786
+ * @param [options.splitNum = 10] - 插值数,横纵等比分割的网格个数(概略值,有经纬网网格来插值)
33625
34787
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
33626
34788
  * @param [options.objectsToExclude] - 贴模型分析时,排除的不进行贴模型计算的模型对象,可以是: primitives, entities, 或 3D Tiles features
33627
34789
  * @returns 异步计算完成的Promise,结果示例:{ maxHeight: 100, minHeight: 21 }
@@ -33663,7 +34825,7 @@ declare namespace PolyUtil {
33663
34825
  * @param options.scene - 三维地图场景对象,一般用map.scene或viewer.scene
33664
34826
  * @param options.positions - 坐标数组
33665
34827
  * @param [options.exact = false] - 是否进行精确计算
33666
- * @param [options.splitNum = 10] - 插值数,横纵等比分割的网格个数
34828
+ * @param [options.splitNum = 10] - 插值数,横纵等比分割的网格个数(概略值,有经纬网网格来插值)
33667
34829
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
33668
34830
  * @param [options.objectsToExclude] - 贴模型分析时,排除的不进行贴模型计算的模型对象,可以是: primitives, entities, 或 3D Tiles features
33669
34831
  * @returns 异步计算完成的Promise
@@ -33792,7 +34954,7 @@ declare namespace PolyUtil {
33792
34954
  * @param [options = {}] - 参数对象:
33793
34955
  * @param options.scene - 三维地图场景对象,一般用map.scene或viewer.scene
33794
34956
  * @param options.positions - 坐标数组
33795
- * @param [options.splitNum = 100] - 插值数,等比分割的个数
34957
+ * @param [options.splitNum = 100] - 插值数,等比分割的个数(概略值,有经纬网网格来插值)
33796
34958
  * @param [options.minDistance] - 插值最小间隔(单位:米),优先级高于splitNum
33797
34959
  * @param [options.height = 0] - 坐标的高度
33798
34960
  * @param [options.surfaceHeight = true] - 是否计算贴地高度 (非精确计算,根据当前加载的地形和模型数据情况有关)
@@ -33811,7 +34973,7 @@ declare namespace PolyUtil {
33811
34973
  * 比如:用于航线的插值运算
33812
34974
  * @param positions - 坐标数组
33813
34975
  * @param [options = {}] - 参数对象:
33814
- * @param [options.splitNum] - 插值数,等比分割的个数,默认不插值
34976
+ * @param [options.splitNum] - 插值数,等比分割的个数,默认不插值(概略值,有经纬网网格来插值)
33815
34977
  * @param [options.minDistance] - 插值时的最小间隔(单位:米),优先级高于splitNum,如果传"auto",自动计算坐标中最小的2点距离
33816
34978
  * @returns 插值后的坐标对象
33817
34979
  */
@@ -33824,7 +34986,7 @@ declare namespace PolyUtil {
33824
34986
  * @param [options = {}] - 参数对象:
33825
34987
  * @param options.scene - 三维地图场景对象,一般用map.scene或viewer.scene
33826
34988
  * @param options.positions - 坐标数组
33827
- * @param [options.splitNum = 100] - 插值数,等比分割的个数
34989
+ * @param [options.splitNum = 100] - 插值数,等比分割的个数(概略值,有经纬网网格来插值)
33828
34990
  * @param [options.minDistance] - 插值最小间隔(单位:米),优先级高于splitNum
33829
34991
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
33830
34992
  * @param [options.objectsToExclude] - 贴模型分析时,排除的不进行贴模型计算的模型对象,可以是: primitives, entities, 或 3D Tiles features
@@ -33878,7 +35040,7 @@ declare namespace PolyUtil {
33878
35040
  * @param [options = {}] - 参数对象:
33879
35041
  * @param options.scene - 三维地图场景对象,一般用map.scene或viewer.scene
33880
35042
  * @param options.positions - 坐标数组
33881
- * @param [options.splitNum = 100] - 插值数,等比分割的个数
35043
+ * @param [options.splitNum = 100] - 插值数,等比分割的个数(概略值,有经纬网网格来插值)
33882
35044
  * @param [options.minDistance] - 插值最小间隔(单位:米),优先级高于splitNum
33883
35045
  * @param [options.has3dtiles = auto] - 是否在3dtiles模型上分析(模型分析较慢,按需开启),默认内部根据点的位置自动判断(但可能不准)
33884
35046
  * @param [options.objectsToExclude] - 贴模型分析时,排除的不进行贴模型计算的模型对象,可以是: primitives, entities, 或 3D Tiles features
@@ -33944,6 +35106,44 @@ declare namespace PolyUtil {
33944
35106
  * @returns 坐标集合 ,如: {points:[LngLatPoint,LngLatPoint], size: 500 }
33945
35107
  */
33946
35108
  function getGridPoints(bbox: number[], count: number, alt?: number): any;
35109
+ /**
35110
+ * 对面内进行插值,并 使用离屏渲染深度图的方式加速计算范围内的任何可见的物体的高度 <br />
35111
+ * 注意事项:<br />
35112
+ * 1. 需要地形和模型等需要分析区域对应的数据加载完成后才能使用该方法。<br />
35113
+ * 2. 如果有遮挡了分析区域的任何矢量对象,都需要分析前隐藏下,分析结束后再改回显示。<br />
35114
+ * @param [options = {}] - 参数对象:
35115
+ * @param options.scene - 三维地图场景对象,一般用map.scene或viewer.scene
35116
+ * @param options.positions - 坐标数组
35117
+ * @param [options.splitNum = 512] - 网格个数,横纵等比分割的网格个数,理论上:外接矩形的点个数 = splitNum * splitNum
35118
+ * @param [options.cameraHeight = scene.camera.positionCartographic.height] - 相机高度
35119
+ * @returns 计算完成的相关数据
35120
+ */
35121
+ function interPolygonByDepth(options?: {
35122
+ scene: Cesium.Scene;
35123
+ positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
35124
+ splitNum?: number;
35125
+ cameraHeight?: number;
35126
+ }): Promise<any>;
35127
+ /**
35128
+ * 对路线内进行插值,并 使用离屏渲染深度图的方式加速计算范围内的任何可见的物体的高度 <br />
35129
+ * 注意事项:<br />
35130
+ * 1. 需要地形和模型等需要分析区域对应的数据加载完成后才能使用该方法。<br />
35131
+ * 2. 如果有遮挡了分析区域的任何矢量对象,都需要分析前隐藏下,分析结束后再改回显示。<br />
35132
+ * @param [options = {}] - 参数对象:
35133
+ * @param options.scene - 三维地图场景对象,一般用map.scene或viewer.scene
35134
+ * @param options.positions - 坐标数组
35135
+ * @param [options.splitNum = 100] - 计算的间隔长度,数据量不能大于Cesium.ContextLimits.maximumTextureSize
35136
+ * @param [options.minDistance] - 插值最小间隔(单位:米),优先级高于splitNum
35137
+ * @param [options.cameraHeight = scene.camera.positionCartographic.height] - 相机高度
35138
+ * @returns 计算完成的相关数据
35139
+ */
35140
+ function interPolylineByDepth(options?: {
35141
+ scene: Cesium.Scene;
35142
+ positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
35143
+ splitNum?: number;
35144
+ minDistance?: number;
35145
+ cameraHeight?: number;
35146
+ }): Promise<any>;
33947
35147
  }
33948
35148
 
33949
35149
  /**
@@ -34483,6 +35683,18 @@ declare namespace Util {
34483
35683
  */
34484
35684
  declare namespace control {
34485
35685
  export { BaseControl }
35686
+
35687
+ export { Animation }
35688
+ export { BaseLayerPicker }
35689
+ export { FullscreenButton }
35690
+ export { Geocoder }
35691
+ export { HomeButton }
35692
+ export { NavigationHelpButton }
35693
+ export { ProjectionPicker }
35694
+ export { SceneModePicker }
35695
+ export { Timeline }
35696
+ export { VRButton }
35697
+
34486
35698
  export { LocationBar }
34487
35699
  export { MouseDownView }
34488
35700
  export { Zoom }
@@ -34493,7 +35705,6 @@ declare namespace control {
34493
35705
  export { MapCompare }
34494
35706
  export { OverviewMap }
34495
35707
  export { ClockAnimate }
34496
- export { Timeline }
34497
35708
  }
34498
35709
 
34499
35710
  /**
@@ -34598,6 +35809,8 @@ declare namespace graphic {
34598
35809
  export { EllipseEntity }
34599
35810
  export { RectangularSensor }
34600
35811
  export { Video2D }
35812
+ export { PitEntity }
35813
+
34601
35814
 
34602
35815
  //polygon扩展的entity
34603
35816
  export { AttackArrow }
@@ -34625,6 +35838,7 @@ declare namespace graphic {
34625
35838
  export { AreaMeasure }
34626
35839
  export { AreaSurfaceMeasure }
34627
35840
  export { VolumeMeasure }
35841
+ export { VolumeDepthMeasure }
34628
35842
 
34629
35843
  //基础primitive
34630
35844
  export { PointPrimitive }
@@ -34639,13 +35853,14 @@ declare namespace graphic {
34639
35853
  export { ConeTrackPrimitive }
34640
35854
  export { EllipsoidPrimitive }
34641
35855
  export { PolylinePrimitive }
34642
- export { PolylineSimplePrimitive }
34643
35856
  export { WallPrimitive }
34644
35857
  export { CorridorPrimitive }
34645
35858
  export { PolylineVolumePrimitive }
34646
35859
  export { RectanglePrimitive }
34647
35860
  export { PolygonPrimitive }
34648
35861
  export { FrustumPrimitive }
35862
+ export { ThickWall }
35863
+
34649
35864
  //扩展的普通primitive
34650
35865
  export { LightCone }
34651
35866
  export { Water }
@@ -34654,6 +35869,8 @@ declare namespace graphic {
34654
35869
  export { DynamicRiver }
34655
35870
  export { Road }
34656
35871
  export { Pit }
35872
+ export { DoubleSidedPlane }
35873
+ export { ReflectionWater }
34657
35874
 
34658
35875
  //批量大数据primitive
34659
35876
  export { BaseCombine }
@@ -34681,6 +35898,7 @@ declare namespace graphic {
34681
35898
  export { Popup }
34682
35899
  export { Tooltip }
34683
35900
 
35901
+
34684
35902
  //自定义扩展:其他
34685
35903
  export { ParticleSystem }
34686
35904
  export { ArcFrustum }
@@ -34690,6 +35908,7 @@ declare namespace graphic {
34690
35908
  export { Route }
34691
35909
  export { FixedRoute }
34692
35910
 
35911
+
34693
35912
  //卫星插件
34694
35913
  export { CamberRadar }
34695
35914
  export { ConicSensor }
@@ -34791,6 +36010,8 @@ declare namespace thing {
34791
36010
  export { FloodByMaterial }
34792
36011
  export { TerrainClip }
34793
36012
  export { ContourLine }
36013
+ export { TerrainFlat }
36014
+ export { TerrainUplift }
34794
36015
 
34795
36016
  export { LimitHeight }
34796
36017
  export { TilesetPlanClip }
@@ -34813,7 +36034,7 @@ declare namespace thing {
34813
36034
 
34814
36035
  export {
34815
36036
  name, update, version, proj4,
34816
- BaseClass, BaseThing, LngLatPoint, LngLatArray, GroundSkyBox, LocalWorldTransform, CRS, ChinaCRS, EventType, State, Token, MaterialType, GraphicType, LayerType, ControlType, EffectType, Lang, LangType, MoveType, ClipType, Icon,
36037
+ BaseClass, BaseThing, LngLatPoint, LngLatArray, GroundSkyBox, MultipleSkyBox, LocalWorldTransform, CRS, ChinaCRS, EventType, State, Token, MaterialType, GraphicType, LayerType, ControlType, EffectType, Lang, LangType, MoveType, ClipType, Icon,
34817
36038
  DomUtil, MeasureUtil, PointUtil, PolyUtil, PointTrans, Util, Log, MaterialUtil, GraphicUtil, DrawUtil, LayerUtil, ControlUtil, EffectUtil,
34818
36039
  BaseMaterialConver, BaseStyleConver, BillboardStyleConver, CloudStyleConver, BoxStyleConver, CircleStyleConver, CorridorStyleConver, CylinderStyleConver, DivGraphicStyleConver, EllipsoidStyleConver, LabelStyleConver, ModelStyleConver, PathStyleConver, PlaneStyleConver, PointStyleConver, PolygonStyleConver, PolylineStyleConver, PolylineVolumeStyleConver, RectangleStyleConver, RectangularSensorStyleConver, WallStyleConver,
34819
36040
  material, graphic, provider, layer, thing, effect, control, query,