缩放后/缩放期间更新 AnnotationView

发布于 2024-11-03 10:32:00 字数 194 浏览 0 评论 0原文

当缩放级别更改时,我需要更改 AnnotationViewcenterOffset 属性。我不想再次删除并添加注释

那么缩放后如何访问和更新 AnnotationViews 呢?

对此有什么想法吗?

此致, 基督教

I need to change the centerOffset property of an AnnotationView when the zoomlevel changed. I don't want to remove and add the Annotations again.

So how can I access and update the AnnotationViews after zooming?

Any ideas on this?

Best Regards,
Christian

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

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

发布评论

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

评论(1

罪#恶を代价 2024-11-10 10:32:00

一种解决方案是使用这些 MKMapView 方法:

- (NSSet *)annotationsInMapRect:(MKMapRect)mapRect // iOS4.2+ only!

检索可见注释,然后使用:

- (MKAnnotationView *)viewForAnnotation:(id<MKAnnotation>)annotation;

获取相应的视图(如果第一个函数正确工作,则永远不应返回 nil)

然后我想更改 centerOffset 应该可以完成这项工作,(也许加上一些 -[UIView setNeedsDisplay/Layout] 来强制重绘)

根据 ZoomLevel 更改 centerOffset 听起来很奇怪,但我想你有你的理由:)

One solution would be to use these MKMapView methods :

- (NSSet *)annotationsInMapRect:(MKMapRect)mapRect // iOS4.2+ only!

to retrieve visible Annotations, then use :

- (MKAnnotationView *)viewForAnnotation:(id<MKAnnotation>)annotation;

To get the corresponding view (should never return nil if first function does it job correctly)

Then I guess changing centerOffset should do the job, (plus maybe some -[UIView setNeedsDisplay/Layout] to force a redraw)

Changing centerOffset depending on zoomLevel sounds strange, but I guess you have your reasons :)

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