目标 C:如何列出具有最近地理位置的位置集

发布于 2024-11-05 13:21:00 字数 165 浏览 0 评论 0原文

我已经编制了包含纬度和经度信息的位置列表。我可以检查根据我当前的位置过滤和填充表格和地图视图中“最近”地理位置列表的最佳方法是什么吗? (或用户输入的目的地)。另外,是否也可以指出我感兴趣的半径是多少?例如,仅选择距我所在位置 5 公里以内的所有最近的书店等,

感谢您对此

振和的建议

I have compiled a list of locations with latitude and longitude information. Can I check what is the best approach to filter and populate the list of "nearest" geolocations in a table and mapview based on my current location? (or a destination entered by a user). Also is it also possible to indicate what is the radius I am interested in? e.g. only select all the nearest bookstores within 5km from my location etc

Appreciate your advice on this

Zhen Hoe

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

段念尘 2024-11-12 13:21:00

也许我遗漏了一些东西,但为什么不将您的位置添加到地图视图中,并将地图置于用户当前位置或他们想要的任何位置的中心呢? MapKit 将为您完成所有计算,并且仅显示靠近中心的计算。用户可以通过放大和缩小来设置自己的半径。 MapKit 正是为此目的进行了高度优化,这就是您可以实时看到“针雨”的方式。

更新:
您也可以采用另一种方式:一旦您在地图上有了注释,您就可以通过以下方式查询地图以查找可见区域中的那些注释:

- (NSSet *)annotationsInMapRect:(MKMapRect)mapRect

来自文档:

此方法提供了一种检索地图特定部分中的注释对象的快速方法。这种方法比您自己对注释属性中的对象进行线性搜索要快得多

Maybe I'm missing something, but why don't you just add your locations to a mapView, and center the map on the user's current location or whereever they want? MapKit will do all the calculations for you, and only show the ones near the center. The user can set their own radius by zooming in and out. MapKit is highly optimized for exactly this purpose, that's how you can see the "rain of pins" in real time.

Update:
You can also go the other way: once you have the annotations on the map, you can query the map for those annotations that are in the visible region with:

- (NSSet *)annotationsInMapRect:(MKMapRect)mapRect

From the docs:

This method offers a fast way to retrieve the annotation objects in a particular portion of the map. This method is much faster than doing a linear search of the objects in the annotations property yourself.

三五鸿雁 2024-11-12 13:21:00

haversine 公式 经常用于导航中计算坐标之间的距离。 这是一个用于距离计算的相当不错的资源,甚至还有一个代码半正矢样本(尽管它是用 Javascript 编写的)。

如果您的位置列表相对较小(甚至数百个),您可能只需迭代整个列表并计算每个位置与当前位置之间的距离。

The haversine formula is frequently used to in navigation for calculating distances between coordinates. This is a pretty decent resource for distance calculations, and even has a code sample for haversine (though it is in Javascript).

If your list of locations is relative small (hundreds, even), you can probably just iterate through the whole list and calculate the distance between each place against current location.

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