Leaflet-Control
- 基于Leaflet的插件# Leaflet-IconLayers,通过# Leaflet-IconLayers来实现自动切换图层的功能
Control是什么? L.Control是Leaflet中一个实现地图控件的基类。负责处理定位。 所有其他的控件都是从这个类中延伸出来的。
- Control的选项配置
position 'topright'
控件的位置(地图的一个角)。- 可能的值是
'topleft'、 'topright'、 'bottomleft' 或 'bottomright'
- Control的方法
方法 | 返回值 | 说明 |
---|---|---|
getPosition() | string | 返回控件的位置。 |
setPostion<String postion> | this | 设置控件的位置。 |
getContainer() | HTMLElement | 返回包含该控件的 HTMLElement。 |
addTo(<Map> map) | this | 将控件添加到给定的地图中。 |
remove() | this | 将控件从当前活动的地图上删除。 |
Leaflet-IconLayers是一个基于Leaflet的带图标的切换控制器