我在理解Google Places API時遇到問題。我正在構建一個附帶功能的iPhone應用程序,該功能允許用戶找到位於用戶GPS周圍的餐館。我該如何獲得Google API?我必須有一個定製的,這是如何工作的?如果我還想爲興趣點創建一個API,我該怎麼做?Google API for Restaurants Places
1
A
回答
5
有一個用於搜索附近位置的Google Places API。文檔在這裏:https://developers.google.com/places/documentation/search#PlaceSearchRequests
但我猜你已經發現了。如果您提出更具體的問題,我們可以提供更多幫助。
0
您可以使用谷歌的地方API,如果你只想顯示特定類型的地方,例如在你的情況下,你可以使用請求對象餐廳如下面的代碼中
var request = {
location: pyrmont,
types: ['restaurant']
};
infowindow = new google.maps.InfoWindow();
places = new google.maps.places.PlacesService(map);
places.nearbySearch(request, callback);
有關類型的更多細節過濾在谷歌的地方API你可以檢查Link on Google Developers
相關問題
- 1. 使用Google Places Api for Webservices或Google Places API for iOS
- 2. PlaceFilter for nearby google maps api places
- 3. Google api for autocomplete places「types」issue
- 4. Google Places API Places Types
- 5. Google Places API Swift
- 6. Google Maps Places API
- 7. Google Places Api Android
- 8. Google Places API - android
- 9. Google Places API Places照片
- 10. Google Places API
- 11. Google Places API cors
- 12. Google Places API subway_station ,?
- 13. Google places Api Key
- 14. Google Places API Warning
- 15. Google Places API Web服務與Android版Google Places API
- 16. Google Places JS API weekday_text
- 17. Google Places API違例
- 18. Google Places API LatLng Query
- 19. Google Places API查詢
- 20. Google Places API限制
- 21. Google Places API屬性
- 22. Google Places API錯誤
- 23. Maps api android key for places api not working
- 24. Google Places API - 響應數量
- 25. Google Places API和Google Javascript API - 密鑰
- 26. 如何過濾City Places的Google Places API
- 27. 反應:Google Places API/Places詳情
- 28. Google Places API未返回place_id
- 29. Android Parse Google Places API JSON
- 30. Google Places API地點描述
感謝您的幫助。我很難理解API。我認爲我現在對它有點處理了。我正在使用seattleclouds.com構建應用程序。如何以HTML格式顯示我使用Google API返回的結果? – user2330432 2013-04-30 21:47:10
你需要告訴我你正在使用什麼編程語言。 – 2013-05-02 03:39:14