Class: ComponentsViewBase

ComponentsViewBase

Lealfet 组件基类。

new ComponentsViewBase(options)

Usage
// 浏览器
<script type="text/javascript" src="https://iclient.supermap.io/dist/leaflet/iclient-leaflet.js"></script>
<script>
  new L.supermap.Components.ComponentsViewBase(options);
  
  // 弃用的写法
  L.supermap.components.componentsViewBase(options);
  
</script>

// ES6 Import
import { ComponentsViewBase } from '@supermapgis/iclient-leaflet';

new ComponentsViewBase(options);

leaflet/components/ComponentsViewBase.js, line 7
Name Type Description
options Object

参数。

Name Type Default Description
position string 'topright' 可选

组件在地图中显示的位置( 'topleft'|'topright'|'bottomleft'|'bottomright' )。

style function 可选

默认图层样式。返回类型:点样式( maker|circleMaker);线和面样式( L.path )。

onEachFeature function 可选

给该元素绑定事件和弹窗。

Version:
  • 9.1.1

Extends

Methods

off(eventType, callback)

leaflet/components/ComponentsViewBase.js, line 78

事件关闭。

Name Type Description
eventType string

监听的事件名。

callback function

监听事件的回调函数。

on(eventType, callback)

leaflet/components/ComponentsViewBase.js, line 68

事件绑定。

Name Type Description
eventType string

监听的事件类型。

callback function

监听事件的回调函数。

onAdd()

leaflet/components/ComponentsViewBase.js, line 57

向地图添加组件。