鉴于我已经有一个多边形实例,并且我正在将地图平移到边界,我也想将多边形移动到地图的中心。
是否有将边界转换为多边形路径的内置方法?
理想情况下,我希望能够执行以下操作:
polygon.setPaths(bounds.getBounds());
鉴于我已经有一个多边形实例,并且我正在将地图平移到边界,我也想将多边形移动到地图的中心。
是否有将边界转换为多边形路径的内置方法?
理想情况下,我希望能够执行以下操作:
polygon.setPaths(bounds.getBounds());
只是用简单的旧方法解决了这个问题:
var polygon_paths_from_bounds = function(bounds){
var paths =new google.maps.MVCArray();
var path = new google.maps.MVCArray();
var ne = bounds.getNorthEast();
var sw = bounds.getSouthWest();
path.push(ne);
path.push(new google.maps.LatLng(sw.lat(), ne.lng()));
path.push(sw);
path.push(new google.maps.LatLng(ne.lat(), sw.lng()));
paths.push(path);
return paths;
}