我有数组
[[[11.11,11.11],[22.22,22.22],[33.33,33.33]],[[11.11,11.11],[22.22,22.22],[33.33,33.33]]]
我想做的就是把它转换成,
var paths = [[
new google.maps.LatLng(38.872886, -77.054720),
new google.maps.LatLng(38.872602, -77.058046),
new google.maps.LatLng(38.870080, -77.058604),
new google.maps.LatLng(38.868894, -77.055664),
new google.maps.LatLng(38.870598, -77.053346)
], [
new google.maps.LatLng(38.871684, -77.056780),
new google.maps.LatLng(38.871867, -77.055449),
new google.maps.LatLng(38.870915, -77.054891),
new google.maps.LatLng(38.870113, -77.055836),
new google.maps.LatLng(38.870581, -77.057037)
]];
每个地方
[[11.11,11.11],[22.22,22.22],[33.33,33.33]]
我的数组是一个新数组 Google LatLng Markers。
我试过在数组上使用 map 函数,如下所示:
point.map(new google.maps.LatLng(point))
但是得到一个 NaN 错误。我是否需要打破每个点,或者我可以通过 map 之类的调用更流畅地做到这一点?