gpt4 book ai didi

javascript - 获取多边形的边界框

转载 作者:数据小太阳 更新时间:2023-10-29 05:18:21 24 4
gpt4 key购买 nike

我有许多复杂的多边形,有些有 750 多个点。 有没有一种快速有效的方法来获取边界框?我不想遍历每个点并扩展边界框..

解决方案应该在或者可能有一个我错过的 Google Maps API v3 函数。


或者我应该硬编码边界框的坐标并使用它们来减少客户端的负载吗?

enter image description here

如何制作多边形:

//Coordinates
var coordinates = [
new google.maps.LatLng(11,22),
new google.maps.LatLng(11,22),
new google.maps.LatLng(11,22),

//etc up to 200, 500 or even 800 points
]

//Options
var options = {
path: coordinates,
strokeColor: "#222",
strokeOpacity: 1,
strokeWeight: 2,
fillColor: "#000",
fillOpacity: 0,
zIndex: 0
}

//Create polygon
var polygon = new google.maps.Polygon( options );

//Show it on map
polygon.setMap( map );

我需要做功课,因为现场计算肯定被排除在外。我可能需要用困难的方式来做,但也许你们中的一些人知道一些方便的在线工具,可以根据插入的坐标计算边界框?

我需要尽可能简单的形状,因为我需要检查我的多边形是否在视口(viewport)中,这可能是 800 个点的噩梦,因为除了遍历所有点之外我不知道任何其他方法。

最佳答案

Polygon 在 Google Maps API v3 上没有方法 getBounds。您可以手动实现它。但它包含fors。顺便一提。我已经实现了 getBounds 方法。它是一个硬编码版本。 demo 的链接.

更新

要获取多个多边形的单个边框,请使用 getBounds 方法的 union 方法。

var coordinates = [ 
new google.maps.LatLng(10,15),
new google.maps.LatLng(12,16),
new google.maps.LatLng(11,18),
new google.maps.LatLng(11,19),
new google.maps.LatLng(13,21),
new google.maps.LatLng(12,22),
new google.maps.LatLng(13,24),
new google.maps.LatLng(11,25),
new google.maps.LatLng(8,23),
new google.maps.LatLng(7,23),
new google.maps.LatLng(8,21),
new google.maps.LatLng(6,17),
new google.maps.LatLng(9,16)
]

var coordinates_1 = [
new google.maps.LatLng(15,28),
new google.maps.LatLng(16,30),
new google.maps.LatLng(17,30),
new google.maps.LatLng(16,31),
new google.maps.LatLng(16,32),
new google.maps.LatLng(14,29),
]

var options = {
path: coordinates,
strokeColor: "#222",
strokeOpacity: 1,
strokeWeight: 2,
fillColor: "#000",
fillOpacity: 0,
zIndex: 0,
map: map
}

var options_1 = {
path: coordinates_1,
strokeColor: "#222",
strokeOpacity: 1,
strokeWeight: 2,
fillColor: "#000",
fillOpacity: 0,
zIndex: 0
}

var polygon = new google.maps.Polygon(options);
var polygon_1 = new google.maps.Polygon(options_1);

if(!google.maps.Polygon.prototype.getBounds)
google.maps.Polygon.prototype.getBounds = function() {
var bounds = new google.maps.LatLngBounds();
var paths = this.getPaths();
for (var i = 0; i < paths.getLength(); i++) {
var path = paths.getAt(i);
for (var j = 0; j < path.getLength(); j++) {
bounds.extend(path.getAt(j));
}
}
return bounds;
}

var rectangle = new google.maps.Rectangle({
strokeColor: '#FF0000',
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: '#FF0000',
fillOpacity: 0.35,
map: map,
bounds: polygon.getBounds()
});

var rectangle_1 = new google.maps.Rectangle({
strokeColor: '#FF0000',
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: '#FF0000',
fillOpacity: 0.35,
map: map,
bounds: polygon_1.getBounds()
});

var rectangle_single = new google.maps.Rectangle({
strokeColor: '#FFC000',
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: '#FFF000',
fillOpacity: 0.35,
map: map,
bounds: polygon.getBounds().union(polygon_1.getBounds())
});

关于javascript - 获取多边形的边界框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34834464/

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