考虑以下代码:
$('.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