for (var i = 0; i < pois.length; i++) {
pois[i].marker.addEventListener('dblclick', function (data) {
var infoWindow = new BMap.InfoWindow(pois[i].address, opts);
map.openInfoWindow(infoWindow, map.getCenter());
})
}
这是我的代码。
显然这里有错误
新 BMap.InfoWindow(pois[i].address, opts);
如何在 pois[i].marker 监听器函数中使用 pois[i].address ?