作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有很多加载了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);
}
});
关于google-maps-api-3 - 如何在Google Maps v3中获取要素多边形几何的LatLngBounds?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24401240/
我从 mapbox 中获取了这个演示: https://docs.mapbox.com/mapbox-gl-js/example/hover-styles/ 我用自己的 GeoJson 文件替换了演示
链接:http://www1.qhoach.com/ 当您拖动时,这张 map 会被平移...但是如果您拖动 KML 要素(带圆圈的图标),则什么也不会发生 最佳答案 首先,在您的应用程序中有四个级别
我是一名优秀的程序员,十分优秀!