mars3d 3.9.7 → 3.9.9

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.9.7
5
- * 编译日期:2025-04-21 19:48
4
+ * 版本信息:v3.9.9
5
+ * 编译日期:2025-05-07 09:31
6
6
  * 版权所有:Copyright by 火星科技 http://mars3d.cn
7
7
  * 使用单位:火星科技免费公开版 ,2025-02-01
8
8
  */
package/mars3d.d.ts CHANGED
@@ -2,8 +2,8 @@
2
2
  /**
3
3
  * Mars3D三维可视化平台 mars3d
4
4
  *
5
- * 版本信息:v3.9.7
6
- * 编译日期:2025-04-21 19:48
5
+ * 版本信息:v3.9.9
6
+ * 编译日期:2025-05-07 09:31
7
7
  * 版权所有:Copyright by 火星科技 http://mars3d.cn
8
8
  * 使用单位:火星科技免费公开版 ,2025-02-01
9
9
  */
@@ -506,6 +506,10 @@ declare enum EventType {
506
506
  * 标绘事件
507
507
  */
508
508
  move = "move",
509
+ /**
510
+ * availability 时序状态发生变化 事件
511
+ */
512
+ availabilityChange = "availabilityChange",
509
513
  /**
510
514
  * 3dtiles模型,模型瓦片初始化完成
511
515
  * 该回调只执行一次
@@ -13703,7 +13707,7 @@ declare namespace PolylineEntity {
13703
13707
  * @property [depthFail] - 是否显示遮挡
13704
13708
  * @property [depthFailColor] - 遮挡处颜色
13705
13709
  * @property [depthFailOpacity] - 遮挡处透明度
13706
- * @property [snakeAnimationDelay = 1] - 延迟多少秒执行执行流动生长(贪吃蛇)动画, 延迟期间不显示
13710
+ * @property [snakeAnimationDelay = 0] - 延迟多少秒执行执行流动生长(贪吃蛇)动画, 延迟期间不显示
13707
13711
  * @property [snakeAnimationDuration] - 执行流动生长(贪吃蛇)动画的时长(内部执行startSnakeAnimation方法),单位:秒
13708
13712
  * @property [distanceDisplayCondition = false] - 是否按视距显示 或 指定此框将显示在与摄像机的多大距离。
13709
13713
  * @property [distanceDisplayCondition_far = number.MAX_VALUE] - 最大距离
@@ -14561,6 +14565,10 @@ declare class Video2D extends PointPolygonEntity {
14561
14565
  * 是否X方向翻转视频
14562
14566
  */
14563
14567
  flipx: boolean;
14568
+ /**
14569
+ * 是否Y方向翻转视频
14570
+ */
14571
+ flipy: boolean;
14564
14572
  /**
14565
14573
  * 是否显示视椎体框线
14566
14574
  */
@@ -23511,9 +23519,9 @@ declare class GraphicLayer extends BaseGraphicLayer {
23511
23519
  isAutoEditing?: boolean;
23512
23520
  isContinued?: boolean;
23513
23521
  isRestorePositions?: boolean;
23514
- drawAddEventType?: boolean;
23515
- drawEndEventType?: boolean;
23516
- drawDelEventType?: boolean;
23522
+ drawAddEventType?: string | EventType;
23523
+ drawEndEventType?: string | EventType;
23524
+ drawDelEventType?: string | EventType;
23517
23525
  zIndex?: number;
23518
23526
  symbol?: {
23519
23527
  type?: GraphicType | string;
@@ -24643,9 +24651,9 @@ declare class ModelLayer extends GraphicLayer {
24643
24651
  isAutoEditing?: boolean;
24644
24652
  isContinued?: boolean;
24645
24653
  isRestorePositions?: boolean;
24646
- drawAddEventType?: boolean;
24647
- drawEndEventType?: boolean;
24648
- drawDelEventType?: boolean;
24654
+ drawAddEventType?: string | EventType;
24655
+ drawEndEventType?: string | EventType;
24656
+ drawDelEventType?: string | EventType;
24649
24657
  zIndex?: number;
24650
24658
  symbol?: {
24651
24659
  type?: GraphicType | string;
@@ -35840,9 +35848,9 @@ declare class Measure extends BaseThing {
35840
35848
  isAutoEditing?: boolean;
35841
35849
  isContinued?: boolean;
35842
35850
  isRestorePositions?: boolean;
35843
- drawAddEventType?: boolean;
35844
- drawEndEventType?: boolean;
35845
- drawDelEventType?: boolean;
35851
+ drawAddEventType?: string | EventType;
35852
+ drawEndEventType?: string | EventType;
35853
+ drawDelEventType?: string | EventType;
35846
35854
  id?: string | number;
35847
35855
  enabled?: boolean;
35848
35856
  eventParent?: BaseClass | boolean;