PlaceResult对象将纬度/经度作为对象返回,不确定如何单独获取它们

时间:2012-05-18 05:53:19

标签: javascript google-maps google-places-api

我正在测试Google地方信息自动填充功能:

https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete

我想得到这个地方的经纬度,但我遇到了一些麻烦。当我使用以下代码时:

var place = autocomplete.getPlace();
console.log(place.geometry.location);

我得到了这个:

enter image description here

当我在这样的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 个答案:

答案 0 :(得分:87)

你可以这样使用。

var latitude = place.geometry.location.lat();
var longitude = place.geometry.location.lng();  

答案 1 :(得分:2)

您可以使用:

var LatLng = place.geometry.location.toJSON();

答案 2 :(得分: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);

答案 3 :(得分:0)

您可以从 PLACES 对象获得 LAT LONG

赞:

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()
    }

}