我可以获得谷歌地方自动填充的坐标吗?

时间:2018-02-02 09:36:07

标签: google-maps googleplacesautocomplete

我无法理解我是否可以通过Google地方自动填充响应获取坐标。或者我是否必须向谷歌地图明确请求格式化地址来自谷歌地方的回复?

3 个答案:

答案 0 :(得分:0)

我正在进行两次调用以获取坐标并使用它获取地点详细信息。 我希望没有办法单独这样做。

答案 1 :(得分:0)

您可以解析响应对象:Result.geometry.location

以下是对地方响应对象的详细说明: Place Details Responses

答案 2 :(得分:0)

您可以使用带有getPlacePredictions()方法[1]的AutocompleteService类以编程方式回溯预测,以检索place_id [2]。然后使用这个place_id你可以使用Places Details Service [3]来获取地点的坐标和更多细节。

[1] https://developers.google.com/maps/documentation/javascript/places-autocomplete

[2] https://developers.google.com/maps/documentation/javascript/reference#AutocompletePrediction

[3] https://developers.google.com/maps/documentation/javascript/places#place_details