InfoBox 内の div にアクセスする方法はありますか? 次のコードは、標準の InfoWindow で機能します。
content = '<div id="#map_wrapper">THIS IS A CONTENT</div>';
infowindow.setContent(content);
infowindow.setPosition(cluster.getCenter());
infowindow.open(map);
console.log($('#map_wrapper').html());
ただし、InfoBox を使用すると、$('#map_wrapper').html()
が返されますnull
。アクセスする方法はあります#map_wrapper
か?
ありがとう!
[サイモン.cpu]