特定区域的 Foursquare 场地
我想检索特定区域的所有 4 平方米场地。现在我可以获得一些像这样的场地:https://api.foursquare.com/v2/venues/search?ll=40.7,-74 其中 ll 是我的地理点。我可以传递半径参数,但我的区域可以具有任何形状。 对于我的后端,我使用 Django
I want to retrieve all 4sq venues from a specific area. Now I can get some venues like this:https://api.foursquare.com/v2/venues/search?ll=40.7,-74 where ll is my geopoint. I can pass a radius argument, but my area can have any shape.
For my backend I use Django
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
/venues/search 现在支持使用矩形(除了圆形之外)进行查询。在请求中指定“sw”和“ne”参数而不是“ll”。
您现在还可以指定“intent=browse”来获取某个区域的最佳结果,而不是根据与区域中心的距离进行加权。
https://developer.foursquare.com/docs/venues/search.html
这仍然不支持任意多边形或对场地进行详尽的检索(它将返回任何区域的 50 个最佳场地),但它应该更接近您正在寻找的内容。
/venues/search now supports querying with rectangles (in addition to circles). Specify "sw" and "ne" params instead of "ll" in your request.
You can also now specify "intent=browse" to get back the best results in an area, not weighted by proximity to your region's center.
https://developer.foursquare.com/docs/venues/search.html
This still doesn't support arbitrary polygons or do an exhaustive retrieval of venues (it'll return the 50 best for any region) but it should be a step closer to what you're looking for.