不在地图上而是在图像上使用注释
我想在大图像上使用通常在地图上使用的注释。
它是 UIView 的子类,但文档没有提到它在 MapKit 之外的使用。
这可能吗?如果不是,是否有任何已知的解决方法?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想在大图像上使用通常在地图上使用的注释。
它是 UIView 的子类,但文档没有提到它在 MapKit 之外的使用。
这可能吗?如果不是,是否有任何已知的解决方法?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
无法在地图之外使用 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.