PathLayer

示例

参数

getPath(Function在新页面打开, optional)

调用数据流中的每个对象以检索其对应的路径。默认: object => object.path

路径支持以下两种格式:

  • 点([x, y, z])数组,兼容 GeoJSON LineString在新页面打开 规范。带 z 值,路径会拉伸高度,不带则默认为 0
  • 扁平数组([x0, y0, z0, x1, y1, z1, ...]),默认要求包含 x y z。如果只有 x y,需设置 positionFormat 参数为 XY
new PathLayer({
  ...
  getPath: object => object.vertices, // [x0, y0, x1, y1, x2, y2, ...]
  positionFormat: `XY`
})