基本上我想用列表視圖來填充指定經度和緯度給定半徑內的酒吧列表。我已經能夠使用JavaScript Places API來返回JSON對象。我如何在原生Android中執行此操作。原生Android的在線文檔沒有像JavaScript那樣清楚地解釋它。我看過網上,但似乎每個人都在使用網絡服務。這是正確的方式,我不知道。簡而言之;我只需要一個包含名稱和ID的列表,我可以使用它來獲取可用於詳細視圖的地址和電話號碼等信息。使用Google Places API獲取地點列表
0
A
回答
0
Github Google Places examples是Google官方示例項目,它解釋了它們的工作原理。
0
作爲Sprockets的一部分,我創建了一個GooglePlacesLoader,您可以使用它在後臺查詢Places API。它提供了Places,你可以給GooglePlacesAdapter渲染列表中的每個項目。
這裏是一起使用兩個類的sample。
相關問題
- 1. 從Google Places API獲取附近地點列表(Swift 3)
- 2. 如何使用Google Places API獲取特定類型的地點?
- 3. 使用Google Places API在特定地點獲取附近城市
- 4. Google地圖/ Places API - 在用戶點擊時獲取地址place_id?
- 5. Google Places API地點描述
- 6. 從Google Places API獲取地址信息
- 7. 從Google Places API獲取新增地點的詳細信息
- 8. Google Places API:添加新地點:Java/Groovy
- 9. 使用Google Places更好地理解Api
- 10. Google Places API Places Types
- 11. Google Places API地址搜索
- 12. Google Places API - 法國地區
- 13. 只能從Google Places API獲取社區
- 14. 使用Google + API/Google People API獲取Google Plus朋友列表iOS
- 15. 使用Google Places Api for Webservices或Google Places API for iOS
- 16. Google Places API - 使用複選框中的多個地點類型
- 17. 如何使用Google Places API搜索特定類型的地點?
- 18. 從Android使用Google Places API訪問的地點(商店)
- 19. 如何使用Google Places API Web Service從地點詳情請求中獲取所有地點詳情?
- 20. Google Places API與Google地圖結果
- 21. Google地圖搜索框vs Google Places API
- 22. Google Places API - 獲取地址,電話號碼等
- 23. 如何從Google Places API獲取城市景點圖像
- 24. Google Places API Places照片
- 25. 如何使用Google Places API獲取郵政編碼?
- 26. 如何使用Google Places API for Android獲取位圖快照?
- 27. 如何在Angular中使用Google Places API獲取photo_reference
- 28. 使用Google Places API獲取公司的行業部門
- 29. 使用Google Places API獲取當前位置的建議
- 30. Google Places API Swift
我最近回答了關於如何使用places API的類似問題,也可以使用此方法用數據填充ListView,而不是在地圖上放置標記。在這裏看到答案:http://stackoverflow.com/questions/30161395/im-trying-to-search-nearby-places-such-as-banks-restaurants-atms-inside-the-d/30162174#30162174 –