标签: android google-maps google-api google-maps-android-api-2
是否有任何其他方API或 Google API会提供当前地点旅行列表
请帮助我,[请更新Google API]
答案 0 :(得分:2)
您可以使用附近的Places API搜索来获取旅行社列表。你应该执行像
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=25.597295%2C85.118716&radius=2000&type=travel_agency&key=YOUR_API_KEY
并在Android应用中解析响应。
要获取有关Places API搜索的更多详细信息,请参阅文档:
https://developers.google.com/places/web-service/search
希望它有所帮助!