我在这里测试 Google Places 自动完成功能:
https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete
我想得到这个地方的纬度和经度,但我遇到了一些麻烦。当我使用以下代码时:
var place = autocomplete.getPlace();
console.log(place.geometry.location);
我得到这个返回:
当我在这样的 infoWindow 中使用它时:
infowindow.setContent('
<div><strong>' + place.name + '</strong><br>' + place.geometry.location);
place.geometry.location
然后显示如下:
(53.539834, -113.49402099999998)
我要做的就是分别获取 lat 和 lng 。place.geometry.location.lat
不起作用。不知道还能做什么。