我使用了基于点的聚类http://bingmapsv7modules.codeplex.com/wikipage?title=Point%20Based%20Clustering
这非常适合集群。但是,我正在尝试使用 setInterval 每 5 秒找到包含第一个图钉的集群的经度纬度......显然我只是在简化场景......
var pushpin = pinLayer[0]; grabbing first story of the pin
var currentClusterIndex = pushpin._clusterIndex; // get the cluster index
var currentCluster = pinLayer.GetPinByClusterIndex(currentClusterIndex);// get cluster info
var currentLatitude = currentClusterLocation.latitude; // get latitude
var currentLongitude = currentClusterLocation.longitude; // get longitude
现在地图加载时纬度和经度是正确的,但是在用户交互之后它很少正确,它给出了不同集群的纬度经度。
有人可以帮忙吗?