Zoom:zoom组件默认位置为左上角,可以根据参数topleft,topright,bottomleft,bottomright设置位置
L.control.zoom({
zoomlnTitle:'放大',
zoomOutTitle:'缩小',
position: 'bottomright'
}).addTo(map);
Atribution
L.control.attribution({
position: 'bottomright',
prefix:'内容'
}).addTo(map);
Scale:maxWidth比例尺宽度
L.control.scale({
maxWidth:100,
metric:true,
imperial:false
}).addTo(map);