mars3d 3.11.4 → 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 +2 -2
- package/mars3d.d.ts +5 -4
- package/mars3d.js +3 -3
- package/package.json +1 -1
package/mars3d.css
CHANGED
package/mars3d.d.ts
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Mars3D三维可视化平台 mars3d
|
|
4
4
|
*
|
|
5
|
-
* 版本信息:v3.11.
|
|
6
|
-
* 编译日期:2026-
|
|
5
|
+
* 版本信息:v3.11.5
|
|
6
|
+
* 编译日期:2026-07-08 13:18
|
|
7
7
|
* 版权所有:Copyright by http://mars3d.cn
|
|
8
8
|
* 使用单位:免费公开版 ,2026-02-01
|
|
9
9
|
*/
|
|
@@ -37744,12 +37744,13 @@ declare class Measure extends BaseThing {
|
|
|
37744
37744
|
popupOptions?: Popup.StyleOptions | any;
|
|
37745
37745
|
}): Promise<PointMeasure | any>;
|
|
37746
37746
|
/**
|
|
37747
|
-
*
|
|
37747
|
+
* 停止绘制(不够最少点的对象和未开始绘制的对象会自动删除,已绘制了最少点的对象会完成在最后一个点位)
|
|
37748
|
+
* 如果需要清除正在绘制的对象,请用 clearDrawing() 方法
|
|
37748
37749
|
* @returns 是否清除了未完成的对象
|
|
37749
37750
|
*/
|
|
37750
37751
|
stopDraw(): boolean;
|
|
37751
37752
|
/**
|
|
37752
|
-
*
|
|
37753
|
+
* 清除正在绘制的对象
|
|
37753
37754
|
* @returns 是否清除了对象
|
|
37754
37755
|
*/
|
|
37755
37756
|
clearDrawing(): boolean;
|