特定区域的 Foursquare 场地

发布于 2024-12-05 05:51:39 字数 155 浏览 0 评论 0原文

我想检索特定区域的所有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦醒时光 2024-12-12 05:51:39

/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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文