34

我在这里测试 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不起作用。不知道还能做什么。

4

4 回答 4

97

你可以这样使用。

var latitude = place.geometry.location.lat();
var longitude = place.geometry.location.lng();  
于 2012-05-18T06:03:02.563 回答
2

您可以使用:

var LatLng = place.geometry.location.toJSON();
于 2016-06-29T17:38:51.617 回答
1

它对我来说很好。

marker.setIcon(image);

marker.setPosition(place.geometry.location);

var address = '';
if (place.address_components) {
    address = [
        (place.address_components[0] && place.address_components[0].short_name || ''),
        (place.address_components[1] && place.address_components[1].short_name || ''),
        (place.address_components[2] && place.address_components[2].short_name || '')
    ].join(' ');
}
alert(place.geometry.location.lat());
alert(place.geometry.location.lng());
infowindow.setContent('<div><strong>' + place.name + '</strong><br>' + address);
infowindow.open(map, marker);
于 2012-10-08T05:51:31.470 回答
0

您可以从PLACES对象中获取LATLONG 。

像这样 :

const autocomplete = new google.maps.places.Autocomplete(this.inputNativeElement.nativeElement as HTMLInputElement);

autocomplete.addListener('place_changed', () => {
    const place = autocomplete.getPlace();

    let cus_location = {
        lat: place.geometry.location.lat(),
        long: place.geometry.location.lng()
    }

}
于 2019-11-16T16:17:20.567 回答