3

考虑以下代码:

$('.stores').click(function() {
    console.log($(this).data('latitude'));  // -1754.26265626
    console.log($(this).data('longitude')); // 65.262518
    console.log(themap); // Properly a Google Map instance.

    themap.setCenter(new LatLng($(this).data('latitude'), $(this).data('longitude')));
});

根据文档,我可以使用该setCenter方法并轻松地将地图居中,但我不明白文档使用的符号。

看:

LatLng(lat:number, lng:number, noWrap?:boolean)

我究竟如何使用它?

我收到错误:

Uncaught ReferenceError: LatLng is not defined 
4

1 回答 1

7

你必须使用

themap.setCenter(new google.maps.LatLng($(this).data('latitude'), $(this).data('longitude')));

所有 Google Maps javascript 类都使用google.maps.ClassName()符号引用

于 2012-12-18T23:04:04.717 回答