Skip to content

BaseLayer

BaseLayer 是一个基础组件,用于定义图层。

API

layerProps

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

baseLayerProps

属性名说明类型默认值
继承自layerProps--
type图层类型string必填
id图层 IDstring-
layout图层布局属性object-
paint图层绘制属性object-
paintOpacitypaint包含透明度的属性array-
shouldRemoveVisibility是否移除可见性booleanfalse
customOptions自定义图层配置Object-

baseLayerEmits

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

Inject

hooks/symbol.ts
typescript
export const layerKey: InjectionKey<ShallowRef<LayerSpecification | undefined>> = Symbol('Layer')
hooks/useLayer.ts
ts
export function useLayer<P extends LayerSpecification>() {
  const layer = inject(layerKey)
  if (!layer) {
    consola.error('Layer instance is not available.')
  }
  return unref(layer) as P
}

类型定义

LyerLoadEvent

layers/BaseLayer/BaseLayer.ts
typescript
export interface LyerLoadEvent {
  layer: any
  source: any
  map: Map
}

LayerExcludeProps

layers/BaseLayer/BaseLayer.ts
typescript
export type LayerExcludeProps<T> = Omit<
  Partial<LayerProps> & T,
  'id' | 'type' | 'source' | 'source-layer'
>

MetadataKey

layers/BaseLayer/BaseLayer.ts
typescript
type MetadataKey = `mapbox:${string}` | `custom:${string}`

基于 MIT 许可发布