我正在使用 lealflet api,用户可以在其中绘制形状以映射(图像)......
最初使用 imageoverlay 为底图添加图层控制(处理 1 层)......
我在点击事件处理创建新层的页面中添加了一个 id 为“newLyer”的按钮.....即用户可以创建新层并更新层控件(现在正在处理 2 个层)......
我使用了几种方法来创建图层并添加到控件但失败了......
将新图层添加到图层组
var layerGroup = new L.LayerGroup(),
imageOverlayUrl = 'aa.jpg',
// New imageoverlay added to the layergroup
imageOverlay = new L.ImageOverlay(imageOverlayUrl, bounds).addTo(layerGroup),
// New featuregroup added to the layergroup
featureGroup = new L.FeatureGroup().addTo(layerGroup);
LayerControl 我需要添加控件的地方(如果我是正确的)
var layerControl = new L.control.layers({
'Main': layerGroup,
//here i need to add new layer control
}, null, { collapsed: false }).addTo(map);
到目前为止的静态代码的 OnClick 函数,这将在单击时执行
$('#newLayer').click(function addNewLayer() {
// Second layergroup not added to the map yet
var layerGroupNew = new L.LayerGroup(),
imageOverlayUrlNew = 'bb.png',
// New imageoverlay added to the second layergroup
imageOverlayNew = new L.imageOverlay(imageOverlayUrlNew, bounds).addTo(layerGroup2),
// New featuregroup added to the second layergroup
featureGroupNew = new L.FeatureGroup().addTo(layerGroupNew);
});
简而言之
最初,我有一个带有其控件的图层,现在 onclick 函数创建了将添加到地图中的新图层,但是我如何将此图层添加到 layerControl ....
如果有人知道如何做这种事情,请帮忙,,,,任何帮助或参考将不胜感激....感谢您的时间