我正在制作一张带有集群的地图,我想在它下面显示一个集群列表。
为了获得集群,我尝试从对象中检索它们。但它不像我预期的那样工作:
// Initialize clusterer
markerCluster = new MarkerClusterer(map, markers, clusterOptions);
// this logs an empty array
var clusters = markerCluster.clusters_;
console.log(clusters);
// This logs array of clusters
setTimeout(function(){
var clusters = markerCluster.clusters_;
console.log(clusters);
}, 500)
所以我想弄清楚是否有 onload 事件或回调函数..