gpt4 book ai didi

javascript - 谷歌地图显示错误的地方

转载 作者:行者123 更新时间:2023-12-03 10:15:17 25 4
gpt4 key购买 nike

我想在谷歌地图上绘制具有给定坐标的形状。但是当我以这种方式尝试时:http://jsfiddle.net/zzhy/4auzbjd5/3/它正在绘制它,但没有显示在正确的位置。我该如何修复它?

var coordinates = r[0].split(":");

var flightPlanCoordinates = new Array();

var bounds = new google.maps.LatLngBounds();

for(i=0;i<coordinates.length;i++)

{
var point =new google.maps.LatLng(coordinates[i].split(',')[0],coordinates[i].split(',')[1]);

bounds.extend(point);

flightPlanCoordinates.push(point);
}




var flightPath = new google.maps.Polyline({

path: flightPlanCoordinates,

geodesic: true,

strokeColor: '#FF0000',

strokeOpacity: 1.0,

strokeWeight: 2

});



flightPath.setMap(map);

map.fitBounds(bounds);
console.log("flightPlanCoordinates:" + flightPlanCoordinates);
console.log("bounds:" + bounds);

最佳答案

数组项的顺序似乎是 longitude,latitude ,但 google.maps.LatLng 需要 latitude,longitude .

切换参数的顺序:

var point =new google.maps.LatLng(coordinates[i].split(',')[1],coordinates[i].split(',')[0]);

http://jsfiddle.net/4auzbjd5/4/

关于javascript - 谷歌地图显示错误的地方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29905763/

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