我的地图上有许多图钉,我想知道它们视图左上角和右下角的坐标,以便对它们执行特定操作。
这是我需要插入获取特定注释视图边界的代码的代码:
- (void)mapView:(MapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view {
if ([view.annotation isKindOfClass:[PlaceAnnotation class]]) {
PlaceAnnotationView *placeAnnotationView = (PlaceAnnotationView *)view;
// How to get the bounds of placeAnnotationView here?
}
}