Android从API获取旅游公司列表(Google API或Any)

时间:2016-10-29 18:20:04

标签: android google-maps google-api google-maps-android-api-2

  • 大家好,我是Android开发的新手,
  • 我的要求是从当前位置获取旅游公司列表[请找到图片]
  • 能够获取当前位置并在Android App主页中显示地图。
  • 是否有任何其他方API或 Google API会提供当前地点旅行列表

  • 请帮助我,[请更新Google API]

  • 先谢谢。TravelsList

1 个答案:

答案 0 :(得分:2)

您可以使用附近的Places API搜索来获取旅行社列表。你应该执行像

这样的HTTP请求

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

希望它有所帮助!