标签: google-places-api
任何人都可以建议我使用任何标准API根据用户GPS位置获取附近的酒店列表。
提前致谢
答案 0 :(得分:1)
使用Google Places API,您可以执行Places Search Request,其中location是用户lat,lng和types=lodging来搜索酒店:
location
types=lodging
https://maps.googleapis.com/maps/api/place/search/json?location=-33.8670522,151.1957362&radius=500&types=lodging&sensor=false&key=YOUR_API_KEY
您需要按照here的说明获取API密钥才能使用该服务。