mars3d 3.10.11 → 3.10.12
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 +6 -3
- 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.10.
|
|
6
|
-
* 编译日期:
|
|
5
|
+
* 版本信息:v3.10.12
|
|
6
|
+
* 编译日期:2026-01-21 13:09
|
|
7
7
|
* 版权所有:Copyright by 火星科技 http://mars3d.cn
|
|
8
8
|
* 使用单位:火星科技免费公开版 ,2025-07-01
|
|
9
9
|
*/
|
|
@@ -15632,6 +15632,7 @@ declare class Lune extends PolygonEntity {
|
|
|
15632
15632
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
15633
15633
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
15634
15634
|
* @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
|
|
15635
|
+
* @param [options.isRect = false] - 是否限定角度为90度的矩形
|
|
15635
15636
|
* @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
|
|
15636
15637
|
* @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
|
|
15637
15638
|
* @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
|
|
@@ -15656,6 +15657,7 @@ declare class ParallelogramEntity extends PolygonEntity {
|
|
|
15656
15657
|
viewFrom?: Cesium.Property;
|
|
15657
15658
|
parent?: Cesium.Entity;
|
|
15658
15659
|
onBeforeCreate?: (...params: any[]) => any;
|
|
15660
|
+
isRect?: boolean;
|
|
15659
15661
|
hasMoveEdit?: boolean;
|
|
15660
15662
|
popup?: string | any[] | ((...params: any[]) => any);
|
|
15661
15663
|
popupOptions?: Popup.StyleOptions | any;
|
|
@@ -21193,6 +21195,7 @@ declare namespace ReflectionWater {
|
|
|
21193
21195
|
|
|
21194
21196
|
/**
|
|
21195
21197
|
* 反射水面(显示模型倒影) Primitive图元 矢量对象, 目前仅支持少量数据(多了就卡)
|
|
21198
|
+
* 依赖:需要map.scene.highDynamicRange需要是false
|
|
21196
21199
|
* @param options - 参数对象,包括以下:
|
|
21197
21200
|
* @param options.positions - 坐标位置
|
|
21198
21201
|
* @param options.style - 样式信息
|
|
@@ -23776,7 +23779,7 @@ declare namespace GraphicLayer {
|
|
|
23776
23779
|
* @param [options.drawAddEventType = EventType.click] - 绘制时增加点的事件,默认单击
|
|
23777
23780
|
* @param [options.drawEndEventType = EventType.dblClick] - 绘制时结束的事件,默认双击
|
|
23778
23781
|
* @param [options.drawDelEventType = EventType.rightClick] - 绘制时删除点的事件,默认右键
|
|
23779
|
-
* @param [options.zIndex] - 控制图层的叠加层次,默认按加载的顺序进行叠加,但也可以自定义叠加顺序,数字大的在上面(
|
|
23782
|
+
* @param [options.zIndex] - 控制图层的叠加层次,默认按加载的顺序进行叠加,但也可以自定义叠加顺序,数字大的在上面(只对同类型线面图层间有效,且只有贴地对象有效)。
|
|
23780
23783
|
* @param [options.symbol] - 矢量数据的style样式,为Function时是完全自定义的回调处理 symbol(attr, style, feature)
|
|
23781
23784
|
* @param [options.symbol.type] - 标识数据类型,默认是根据数据生成 point、polyline、polygon
|
|
23782
23785
|
* @param options.symbol.styleOptions - Style样式,每种不同类型数据都有不同的样式,具体见各{@link GraphicType}矢量数据的style参数。
|