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`
})