我正在使用Google地址api 自动填充地址表单。我真正想要的只是纬度和经度。 api调用正在工作,并给我地址组件。如何让它给我经纬度?
我找不到任何关于它可以返回的其他组件的文档。这是选项部分
var componentForm = {
street_number: 'short_name',
route: 'long_name',
locality: 'long_name',
administrative_area_level_1: 'short_name',
country: 'long_name',
postal_code: 'short_name'
};
这是我使用的表单和代码https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete-addressform
答案 0 :(得分:1)
http://codepen.io/algib/pen/Kpxzpy
你打算调用吗?place.geometry.location.lat();
place.geometry.location.lng();