0

我有一个样式集,如下所示:

styles: {
  markerStyleSet: [{
    when: "$geometryType == 'point'",
    technique: "circles",
    renderOrder: 1000, // Render the markers above other objects on the map
    color: "#7ED321",
    size: 500
  }]
}

technique设置为时"squares",无论缩放如何,每个点覆盖的陆地区域都保持不变。但是,我想将这些点呈现为圆形而不是正方形。

当我technique设置为"circle"如上面的片段所示时,就会出现问题。这样做会导致我的点根据缩放级别覆盖不同数量的地理区域。如何以类似的样式渲染一个点,SquaresTechnique但将它们显示为圆圈?

4

0 回答 0