在 iPhone 中通过代码显示地图标注

发布于 2024-11-19 15:34:02 字数 712 浏览 3 评论 0原文

我尝试了几件事但无法解决。

我在地图上有 10 个自定义注释,具体取决于可见区域。

现在我有下一个和上一个两个按钮。单击必须显示注释标注。

即,如果我单击“下一个”按钮,则会出现注释 1 的标注,当我再次单击“下一步”时,第一个标注将隐藏,第二个标注将出现。

我已经尝试过

[self.mapView selectAnnotation:self.nextSelectedAnnotationView.annotation animated:YES]

[self.mapView deselectAnnotation:self.selectedAnnotationView.annotation animated:YES];

但主要问题是如何在这里获取注释?

我已尝试 NSArray* selectedAnnotations=self.mapview.annotations 来获取注释数组

id annotationView =[selectedAnnotations objectAtIndex:i];
[self.mapView selectAnnotation:annotationView animated:YES];

,但没有运气:(

还有其他方法来解决我的问题吗??

I have tried several things but am unable to solve it out.

I have 10 custom annotations on the map depending upon the area visible.

Now I have 2 buttons next and previous. Clicking on which the callout of annotation must get displayed.

i.e if i click on next buton then callout of annotation 1 will appear and when i click next again then the callout of first will hide and callout of second will appear.

I have tried out

[self.mapView selectAnnotation:self.nextSelectedAnnotationView.annotation animated:YES]

and

[self.mapView deselectAnnotation:self.selectedAnnotationView.annotation animated:YES];

But the main problem is how to get the annotation here??

I have tried NSArray* selectedAnnotations=self.mapview.annotations to get the annotations array

id annotationView =[selectedAnnotations objectAtIndex:i];
[self.mapView selectAnnotation:annotationView animated:YES];

But no luck :(

Any other way to solve my issue.??

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

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

发布评论

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

评论(1

夏见 2024-11-26 15:34:02

它可能会帮助你。

 NSArray *selectedAnnotations = mapView.selectedAnnotations;
for(id annotationView in selectedAnnotations) {
    [mapView deselectAnnotation:[annotationView annotation] animated:NO];
}

it may help you.

 NSArray *selectedAnnotations = mapView.selectedAnnotations;
for(id annotationView in selectedAnnotations) {
    [mapView deselectAnnotation:[annotationView annotation] animated:NO];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文