获取用户所在的地点类型

时间:2019-11-26 16:50:29

标签: kotlin flutter

我想在用户为时获取对象的名称。例如:教堂,电影院。

我可以使用GoogleMap来获取用户位置,而是返回经度和纬度获取对象吗? Flutter或Kotlin。

1 个答案:

答案 0 :(得分:0)

也许您正在寻找Google Places API;

https://developers.google.com/places/web-service/search

在本节中使用api后,您可以找到JSON的示例:

 https://developers.google.com/places/web-service/search#find-place-responses

并且在该JSON中,存在以下数据(还有许多其他数据):

 "name" : "Museum of Contemporary Art Australia",
 "types" : [ "travel_agency", "restaurant", "food", "establishment" ],

我认为您可以从这一点开始研究它,您可以在该链接中看到的JSON中返回了很多信息