1

我想将我所有的坐标放入一个数组中,并循环显示每个坐标,但使用 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

4

1 回答 1

0

像这样:

For(var i in arrPos){
  new google.maps.LatLng(arrPos[i][0],arrPos[i][1]);
}

问候

托马斯·范拉图姆

于 2012-10-11T05:14:08.300 回答