我想在特定缩放级别后自动显示注释标注。但是,我不想拥有所有的注释标注,而只是那些正在屏幕上显示的标注。
要显示屏幕上可见的注释标注,只需下面的代码就可以了,因为它依赖于 MKMapView
的 selectAnnotation
方法,当然,检测到所需的缩放级别后:
for (MKAnnotation *annotation in mapView.annotations) {
if ( MKMapRectContainsPoint(mapView.visibleMapRect, MKMapPointForCoordinate(annotation.coordinate)) ) {
[mapView selectAnnotation:annotation animated:YES];
}
}
关于ios - 某些缩放级别后的自动注释标注,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22663970/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |