回撤-解决集结地点位经度越过180°时计算错误的问题

This commit is contained in:
zh
2025-08-18 13:42:26 +08:00
parent 23420762ca
commit a9594ccec2

View File

@ -503,9 +503,6 @@ class Tools {
let points = positions.length;
let pnts = new Array();
positions.forEach((item) => {
if(item.lng<-90) {
item.lng += 360
}
pnts.push([item.lng, item.lat]);
});
//console.log("pnts6666",pnts);