Skip to content

VClipLayer

VClipLayer 用于剪裁图层的渲染。

注意

请注意,这是一个实验性功能,正在开发中,很容易发生变化。

基础用法

API

clipLayerProps

属性名说明类型默认值
order图层顺序number-
minzoom图层最小缩放级别number0
maxzoom图层最大缩放级别number22
sourceLayer矢量切片源使用的图层string-
filter图层过滤器array-
layout图层布局属性object-
slot图层槽位string-
cursor图层移入时鼠标样式stringpointer
metadata图层任意属性object-

clipLayerEmits

事件名说明回调参数
load图层加载完成时触发Function
mousedown鼠标按下时触发Function
mouseup鼠标抬起时触发Function
mouseover鼠标悬停时触发Function
mousemove鼠标移动时触发Function
preclick鼠标单击前触发Function
click鼠标单击时触发Function
dblclick鼠标双击时触发Function
mouseenter鼠标进入时触发Function
mouseleave鼠标离开时触发Function
mouseout鼠标移出时触发Function

类型定义

ClipLayerLoadEvent

layers/ClipLayer/ClipLayer.ts
typescript
export interface ClipLayerLoadEvent {
  layer: ClipLayerSpecification
  source: GeoJSONSource | VectorTileSource
  map: Map
}

基于 MIT 许可发布