我正在使用osm
andopenlayers
来显示两张地图。
我创建了一个自定义控件:
function getDrawPolygonControl() {
const button = document.createElement('button');
button.innerHTML = '<i class="fas fa-pen"></i>';
button.addEventListener('click', e => {
// how to get the correct map instance here????
console.log(e);
});
const element = document.createElement('div');
element.className = 'ol-draw ol-control';
element.appendChild(button);
return new ol.control.Control({element: element});
}
在我的 initMap() 函数中,我使用以下方法将其添加到相应的地图中:
const controls = [new ol.control.FullScreen(), new ol.control.Attribution(), getDrawPolygonControl()];
const map = new ol.Map({
view: view,
target: target,
controls: controls,
});
现在的问题是如何在我的 onClick 监听器中获得正确的地图实例?