1、阻止事件冒泡
L.DomEvent.disableClickPropagation(document.querySelector('.layer_panel'))
2、修改地图鼠标样式
document.querySelector(".leaflet-grab").style.cursor = "pointer"
3、判断图层是否已添加到地图上
map.hasLayer(layer);
4、瓦片拉伸 ==> 19级、20级显示18级拉伸后的瓦片
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {maxZoom: 20,maxNativeZoom: 18}).addTo(map);
5、设置图层透明度
// opacity 取值(0-1)
layer.setOpacity(opacity);