gpt4 book ai didi

google-maps-api-3 - 如何在Google Maps v3中获取要素多边形几何的LatLngBounds?

转载 作者:行者123 更新时间:2023-12-03 13:47:00 25 4
gpt4 key购买 nike

我有很多加载了loadGeoJson的多边形要素,并且我想获取每个要素的latLngBounds。我是否需要编写一个函数来遍历多边形中的每个纬度长对,并对每个纬度对LatLngBounds进行extend(),还是有更好的方法? (如果没有,我可能会想出如何遍历多边形顶点的方法,但是欢迎您举一个例子)

最佳答案

多边形功能没有公开边界的属性,您必须自行计算。

例:

   //loadGeoJson  runs asnchronously, listen to the addfeature-event
google.maps.event.addListener(map.data,'addfeature',function(e){

//check for a polygon
if(e.feature.getGeometry().getType()==='Polygon'){

//initialize the bounds
var bounds=new google.maps.LatLngBounds();

//iterate over the paths
e.feature.getGeometry().getArray().forEach(function(path){

//iterate over the points in the path
path.getArray().forEach(function(latLng){

//extend the bounds
bounds.extend(latLng);
});

});

//now use the bounds
e.feature.setProperty('bounds',bounds);

}
});


演示: http://jsfiddle.net/doktormolle/qtDR6/

关于google-maps-api-3 - 如何在Google Maps v3中获取要素多边形几何的LatLngBounds?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24401240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com