mars3d 3.3.9 → 3.3.10
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.css +12 -8
- package/dist/mars3d.d.ts +61 -212
- package/dist/mars3d.js +4 -4
- package/package.json +1 -1
package/dist/mars3d.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Mars3D三维可视化平台 mars3d
|
|
3
3
|
*
|
|
4
|
-
* 版本信息:v3.3.
|
|
5
|
-
* 编译日期:2022-05-
|
|
4
|
+
* 版本信息:v3.3.10
|
|
5
|
+
* 编译日期:2022-05-23 18:16:48
|
|
6
6
|
* 版权所有:Copyright by 火星科技 http://mars3d.cn
|
|
7
7
|
* 使用单位:免费公开版 ,2022-02-01
|
|
8
8
|
*/
|
|
@@ -22,6 +22,16 @@
|
|
|
22
22
|
.mars3d-container .mars3d-vrButton {
|
|
23
23
|
right: auto !important;
|
|
24
24
|
}
|
|
25
|
+
/**隐藏的div对象,如 DivBillboardEntity、HeatLayer 等*/
|
|
26
|
+
.mars3d-hideDiv {
|
|
27
|
+
z-index: -1;
|
|
28
|
+
position: absolute !important;
|
|
29
|
+
top: 0;
|
|
30
|
+
left: 0;
|
|
31
|
+
margin: 0;
|
|
32
|
+
padding: 0;
|
|
33
|
+
pointer-events: none;
|
|
34
|
+
}
|
|
25
35
|
/**右键菜单*/
|
|
26
36
|
.mars3d-contextmenu {
|
|
27
37
|
position: absolute;
|
|
@@ -485,12 +495,6 @@
|
|
|
485
495
|
margin: -2px;
|
|
486
496
|
box-sizing: content-box;
|
|
487
497
|
}
|
|
488
|
-
.mars3d-divBillboardEntity {
|
|
489
|
-
position: absolute;
|
|
490
|
-
top: 0;
|
|
491
|
-
left: 0;
|
|
492
|
-
z-index: -1;
|
|
493
|
-
}
|
|
494
498
|
/**内置的DivGraphic通用样式【动画点】*/
|
|
495
499
|
.mars3d-animation-point,
|
|
496
500
|
.mars3d-animation-point:after,
|