Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以建议我使用任何标准 API 根据用户 GPS 位置获取附近的酒店列表。
提前致谢
使用Google Places API,您可以执行Places Search Requestlocation用户的 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
您需要按照此处的说明获取 API 密钥才能使用该服务。