显示当前位置周围的位置?

发布于 2024-11-19 09:48:18 字数 94 浏览 3 评论 0原文

在我的地图中,我需要显示我从 xml 获取的位置,这些位置当前位于距我当前位置 200 英里的半径内。 我以前从来没有做过这件事,你能建议一个方法吗?

谢谢,

In my map i need to display the locations which i am getting from a xml which are currently in a 200 mile radius from my current location.
I have never done this thing before can you please suggest a way.

Thanks,

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

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

发布评论

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

评论(2

皓月长歌 2024-11-26 09:48:18

查看 核心位置。特别是,CLLocation 类的 distanceFromLocation: 方法对于查找附近位置非常有用。使用CLLocationManager找出当前位置。

由于您很可能会从 XML 中检索纬度和经度,因此 CLLocationinitWithLatitude:longitude: 将可以方便地初始化您可以使用的 CLLocation 对象。稍后传递给 distanceFromLocation:

Look into CoreLocation. Particularly, the method distanceFromLocation: of the CLLocation class will prove useful to find nearby locations. Use CLLocationManager to find out the current location.

Since you will most likely retrieve latitudes and longitudes from your XML, CLLocations initWithLatitude:longitude: will be handy to initialize CLLocation objects that you can later pass to distanceFromLocation:.

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