0

我正在使用以下代码来查找中心并放大使用 google maps api V2 的代码。

function calculaCentro(points){
alert("in calcula Centro");
    var gbounds = new GBounds(points);
    alert("gbounds is" +gbounds);
    var center = gbounds.mid();
    return center;
}


function calculaZoom(points){
alert("in calcula zoom");
    var gbounds = new GBounds(points);
    var n = new GLatLng(gbounds.min().y,gbounds.min().x);
    var s = new GLatLng(gbounds.max().y,gbounds.max().x);
    var zoom = map.getBoundsZoomLevel(new GLatLngBounds(n,s));
    return zoom;
}

现在我想将它转换为谷歌地图 Api V3。但找不到 GBounds 的任何确切替代品。有人可以帮我吗?

4

1 回答 1

1

你想要的是 LatLngBounds

https://developers.google.com/maps/documentation/javascript/reference#LatLngBounds

于 2013-04-25T08:27:24.130 回答