mars3d 3.11.3 → 3.11.5

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/mars3d.css CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Mars3D三维可视化平台 mars3d
3
3
  *
4
- * 版本信息:v3.11.3
5
- * 编译日期:2026-05-13 11:55
4
+ * 版本信息:v3.11.5
5
+ * 编译日期:2026-07-08 13:18
6
6
  * 版权所有:Copyright by http://mars3d.cn
7
7
  * 使用单位:免费公开版 ,2026-02-01
8
8
  */
package/mars3d.d.ts CHANGED
@@ -2,8 +2,8 @@
2
2
  /**
3
3
  * Mars3D三维可视化平台 mars3d
4
4
  *
5
- * 版本信息:v3.11.3
6
- * 编译日期:2026-05-13 11:55
5
+ * 版本信息:v3.11.5
6
+ * 编译日期:2026-07-08 13:18
7
7
  * 版权所有:Copyright by http://mars3d.cn
8
8
  * 使用单位:免费公开版 ,2026-02-01
9
9
  */
@@ -21337,6 +21337,7 @@ declare namespace ReflectionWater {
21337
21337
  /**
21338
21338
  * 反射水面(显示模型倒影) Primitive图元 矢量对象, 目前仅支持少量数据(多了就卡)
21339
21339
  * 依赖:需要map.scene.highDynamicRange需要是false
21340
+ * 已知问题:该对象与部分矢量对象存在渲染冲突问题,比如造成Polygon是回调属性坐标时且开启distanceDisplayCondition时不显示填充物,请按需选用。
21340
21341
  * @param options - 参数对象,包括以下:
21341
21342
  * @param options.positions - 坐标位置
21342
21343
  * @param options.style - 样式信息
@@ -30232,7 +30233,7 @@ declare namespace Map {
30232
30233
  * @property [automaticallyTrackDataSourceClocks = true] - 如果为true,则此小部件将自动跟踪新添加的数据源的时钟设置,并在数据源的时钟发生更改时进行更新。如果要独立配置时钟,请将其设置为false。
30233
30234
  * @property [contextOptions = {}] - WebGL创建属性 传递给 Cesium.Scene 的 options 。{@link Cesium.Scene}
30234
30235
  * @property [contextOptions.allowTextureFilterAnisotropic = true] - 允许纹理过滤各向异性
30235
- * @property [contextOptions.requestWebgl1 = false] - 是否启用webgl1,cesium v1.102起默认用webgl2渲染
30236
+ * @property [contextOptions.requestWebgl1 = false] - 是否启用webgl1,cesium v1.102起默认用webgl2渲染。提示:webgl1下会引发很多错误,目前Cesium很多功能都依赖webgl2
30236
30237
  * @property [contextOptions.webgl] - WebGL画布,用于 canvas.getContext("webgl", webglOptions) See {@link https://registry.khronos.org/webgl/specs/latest/1.0/#5.2|WebGLContextAttributes}
30237
30238
  * @property [contextOptions.webgl.alpha = false] - 是否包含alpha缓冲区,如果需要DIV透明时,需要改为true
30238
30239
  * @property [contextOptions.webgl.depth] - 绘图缓冲区的深度缓冲区至少为16位
@@ -37743,12 +37744,13 @@ declare class Measure extends BaseThing {
37743
37744
  popupOptions?: Popup.StyleOptions | any;
37744
37745
  }): Promise<PointMeasure | any>;
37745
37746
  /**
37746
- * 停止绘制,如有未完成的绘制会自动删除
37747
+ * 停止绘制(不够最少点的对象和未开始绘制的对象会自动删除,已绘制了最少点的对象会完成在最后一个点位)
37748
+ * 如果需要清除正在绘制的对象,请用 clearDrawing() 方法
37747
37749
  * @returns 是否清除了未完成的对象
37748
37750
  */
37749
37751
  stopDraw(): boolean;
37750
37752
  /**
37751
- * 清除正在绘制
37753
+ * 清除正在绘制的对象
37752
37754
  * @returns 是否清除了对象
37753
37755
  */
37754
37756
  clearDrawing(): boolean;