mars3d 3.11.2 → 3.11.3

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.2
5
- * 编译日期:2026-04-08 16:12
4
+ * 版本信息:v3.11.3
5
+ * 编译日期:2026-05-13 11:55
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.2
6
- * 编译日期:2026-04-08 16:12
5
+ * 版本信息:v3.11.3
6
+ * 编译日期:2026-05-13 11:55
7
7
  * 版权所有:Copyright by http://mars3d.cn
8
8
  * 使用单位:免费公开版 ,2026-02-01
9
9
  */
@@ -8867,6 +8867,7 @@ declare namespace DivGraphic {
8867
8867
  * @param options.style - 样式信息
8868
8868
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
8869
8869
  * @param [options.hasEdit = true] - 是否允许编辑
8870
+ * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
8870
8871
  * @param [options.hasEditContextMenu = true] - 编辑时,是否绑定右键编辑菜单
8871
8872
  * @param [options.hasEditRevoke = true] - 编辑时,是否记录编辑步骤中坐标记录,用于还原或撤销编辑
8872
8873
  * @param [options.testPoint] - 测试点 的对应样式 ,可以进行用于比较测试div的位置,方便调试CSS。
@@ -8901,6 +8902,7 @@ declare class DivGraphic extends BaseGraphic {
8901
8902
  style: DivGraphic.StyleOptions | any;
8902
8903
  attr?: any | BaseGraphic.AjaxAttr;
8903
8904
  hasEdit?: boolean;
8905
+ drawShow?: boolean;
8904
8906
  hasEditContextMenu?: boolean;
8905
8907
  hasEditRevoke?: boolean;
8906
8908
  testPoint?: PointEntity.StyleOptions | any;
@@ -19568,6 +19570,12 @@ declare class FrustumPrimitive extends BasePointPrimitive {
19568
19570
  * 求当前位置射线与地球相交点
19569
19571
  */
19570
19572
  readonly groundPosition: Cesium.Cartesian3;
19573
+ /**
19574
+ * 取棱锥体远面4个顶点坐标
19575
+ * @param [time = Cesium.JulianDate.now()] - 指定的时间值
19576
+ * @returns 坐标数组
19577
+ */
19578
+ getFarPlanePositions(time?: Cesium.JulianDate): Cesium.Cartesian3[];
19571
19579
  /**
19572
19580
  * 获取射线向地面与地球的4个交点坐标
19573
19581
  * @param [time = Cesium.JulianDate.now()] - 指定的时间值
@@ -23673,7 +23681,7 @@ declare namespace GeoJsonLayer {
23673
23681
  * @param [options.simplify.mutate = true] - 是否允许对输入进行变异(如果为true,则显著提高性能)
23674
23682
  * @param [options.buildings] - 标识当前图层为建筑物白膜类型数据
23675
23683
  * @param [options.buildings.bottomHeight] - 建筑物底部高度(如:0) 属性字段名称(如:{bottomHeight})
23676
- * @param [options.buildings.cloumn = 1] - 层数,楼的实际高度 = height*cloumn
23684
+ * @param [options.buildings.cloumn = 1] - 层数,楼的实际高度 = height*cloumn 或 属性字段名称(如:{floor})
23677
23685
  * @param [options.buildings.height = 3.5] - 层高的 固定层高数值(如:10) 或 属性字段名称(如:{height})
23678
23686
  * @param [options.proxy] - 加载资源时要使用的代理服务url。
23679
23687
  * @param [options.queryParameters] - 一个对象,其中包含在检索资源时将发送的查询参数。比如:queryParameters: {'access_token': '123-435-456-000'}