我想将我所有的坐标放入一个数组中,并循环显示每个坐标,但使用 Google 函数。
这是在谷歌地图上绘制点的代码:
var flightPlanCoordinates = [
new google.maps.LatLng(37.772323, -122.214897),
new google.maps.LatLng(21.291982, -157.821856),
new google.maps.LatLng(-18.142599, 178.431),
new google.maps.LatLng(-27.46758, 153.027892)
];
我希望能够做这样的事情:
var arrPos = new Array([37.772323, -122.214897], [21.291982, -157.821856], [-18.142599, 178.431], etc. );
var flightPlanCoordinates = [ +
for (i=0; i<arrPos.length; i++){
new google.maps.LatLng(arrPos[0]) + ", "
}
+ "];"
我知道您可以在数组中放置一个循环,但是是否有另一种方法可以从数组中检索点?
tks