如何从标记列表中获取gmap中心?

时间:2011-12-28 14:13:58

标签: javascript google-maps extjs

如何将getCenter()函数与我的gmap(3.0)中选取的标记列表一起使用?

现在我正在尝试这种方法

Ext.each(myRecords, function (r) {
if (...) {
myArray.push(new google.maps.LatLng(r.get('Latitude'), r.get('Longitude')));
}
});

有没有一种简单的方法可以从该阵列获得最远的标记?如果我能做到,我可以做到:

var myLatLng = ...   
var bounds = new google.maps.LatLngBounds();
bounds.extend(myLatLng);
bounds.getCenter(); 

1 个答案:

答案 0 :(得分:0)

我不确定你的实际要求是什么。但是,如你在标题中提出的那样回答这个问题:

var bounds = new google.maps.LatLngBounds();
Ext.each(myMarkers, function (m) {
    bounds.extend(m.getPosition());
});
bounds.getCenter();