在mapkit上画一个圆圈

发布于 2024-10-30 16:15:58 字数 45 浏览 1 评论 0原文

我必须在地图上画一个圆,它必须以一个点为中心大约 1.8 英里。我该怎么做?

I got to draw a circle on my map, it has to be about 1,8 miles centered on a point.. How can I do it?

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

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

发布评论

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

评论(1

不知所踪 2024-11-06 16:15:58

基本上你需要做2步:

  1. 使用circleWithCenterCooperative:radius:方法创建MKCircle对象并将其添加到你的mapView中(使用addOverlay:方法)
  2. 在mapView委托中实现mapView:viewForOverlay: 方法,在那里创建并设置 MKCircleView 实例并返回它

如果您有不同的覆盖类型,您可能需要在委托方法中执行一些类型检查以创建适合的覆盖视图每种类型的叠加。

Basically you need to do 2 steps:

  1. Create MKCircle object using circleWithCenterCoordinate:radius: method and add it to your mapView (using addOverlay: method)
  2. In mapView delegate implement mapView:viewForOverlay: method, create and setup MKCircleView instance there and return it

If you have different overlay types you may need to perform some type-checks in delegate method to create overlay views appropriate for each type of overlay.

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