通过apply()将数组传递到google.maps.LatLng

时间:2014-03-14 18:03:55

标签: javascript google-maps

尝试更好地理解apply()。我认为这是一个很好的用例,它只是不起作用。

我收到了这个错误:

Uncaught TypeError: function apply() { [native code] } is not a constructor

当我尝试申请google.maps.LatLng

new google.maps.LatLng.apply(null, hospital)

new google.maps.LatLng().apply(null, hospital)

更新

此作品

new google.maps.LatLng.apply(40.670287895547006,-73.9865255355835)

此操作失败

new google.maps.LatLng.apply(null, [40.670287895547006,-73.9865255355835])

0 个答案:

没有答案