其实我在工作MKMapview
。根据坐标生成不同的注释,在同一坐标有多个注释的情况下,它只显示第一个和最后一个数据。我无法显示注释的中间数据。所以我的问题是如何显示相同坐标的两个以上注释MKMapview
?
使用下面的代码,我可以在任何相同的坐标上显示所有数据,现在我遇到了另一个问题,即两个或多个相同坐标之间的混淆。这意味着当我有两个或更多具有相同坐标的两个点时,它会混淆。如果您有任何想法,请与我们分享。…………
int nextAnnotationToSelect = (lastAnnotationSelected + 1)
% mapView.annotations.count;
id<MKAnnotation> nextAnnotation =[mapView.annotations objectAtIndex:nextAnnotationToSelect];
[mapView selectAnnotation:nextAnnotation animated:YES];
lastAnnotationSelected = nextAnnotationToSelect;