不在地图上而是在图像上使用注释

发布于 2024-11-17 15:29:09 字数 106 浏览 3 评论 0 原文

我想在大图像上使用通常在地图上使用的注释。

它是 UIView 的子类,但文档没有提到它在 MapKit 之外的使用。

这可能吗?如果不是,是否有任何已知的解决方法?

I want to use annotations, normally used on maps, on a large image.

It's a sub class of UIView, but the docs don't mention it's use outside of the MapKit.

Is this possible? If it's not, are there any known workarounds?

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

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

发布评论

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

评论(1

紫﹏色ふ单纯 2024-11-24 15:29:09

无法在地图之外使用 MKAnnotationView - 您必须实现自己的注释视图。 MKAnnotationView 需要一个符合 MKAnnotation 为其提供有关显示位置的坐标信息 (CLLocationCooperative2D)。这些坐标不是 CGPoint,因此您无法在视图上伪造它。

在 iPad 上有一个 UIPopoverController ,它看起来非常类似于注释,并且可以显示在任何视图上。请注意,UIPopoverController 在除 iPad 之外的任何设备上均不可用。

It isn't possible to use an MKAnnotationView outside a map - you'll have to implement your own annotation view. MKAnnotationView requires an object which conforms to MKAnnotation to provide it coordinate information (CLLocationCoordinate2D) about where to display. Those coordinates are not CGPoints, so you won't be able to fake it on a view.

On iPad there is a UIPopoverController, which looks very similar to an annotation, and can be displayed on any view. Note that UIPopoverController is not available on any device but iPad.

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