Skip to content

BaseControl

BaseControl 是一个基础组件,用于定义控件。

API

controlProps

属性名说明类型默认值
position控件位置stringtop-left

baseControlProps

属性名说明类型默认值
继承自controlProps--
type控件类型stringattribution
attributionOptions归属控件选项Object-
fullscreenOptions全屏控件选项Object-
navigationOptions导航控件选项Object-
geolocateOptions定位控件选项Object-
scaleOptions比例控件选项Object-
uiOptionsUI 控件选项Object-

controlEmits

事件名说明回调参数
add控件添加完成后触发Function
remove控件移除完成后触发Function

类型定义

ControlLoadEvent

control/BaseControl/BaseControl.ts
typescript
export interface ControlLoadEvent {
  type: any
  control: any
  map: Map
}

基于 MIT 许可发布