图层使用过程中可能遇到的问题

9/14/2024

# czml 文件如何上传加载

目前 czml 不支持上传加载

# 连续标绘时,怎么使用 .then 方法

isContinued 是否连续标绘,连续标绘状态下无法编辑已有对象,且不支持获取 startDraw 方法的返回值(是内部自动调用的,如果要获取请 drawCreated 事件中获取或外部手动进行 startDraw)。

graphicLayer.on(mars3d.EventType.drawCreated, function (e) {
  console.log("创建完成", e);

  graphicLayer.stopDraw();
  graphicLayer.startDraw(mars3d.Util.clone(e.graphic.options)); // 连续标绘时,可以代替isContinued
});
1
2
3
4
5
6

# clustering 聚合图层

# 能否根据地图层级进行聚合

不支持,目前仅是前端像素距离。

最后更新: 9/19/2024, 5:53:05 PM