我有一个带有自定义注释图像的MKMapview,当我点击注释时,我将图像更改为更大尺寸的图像,这会导致点移动。
有没有办法确保图像再次在纬度和经度上对齐?
- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
{
MKPointAnnotation * pin = view.annotation;
if ([pin isKindOfClass:[MKUserLocation class]])
{
return;
}
NSMutableString * imageName = [[NSMutableString alloc] initWithString:[((SpotView *)self.baseView) generatePin:self.category]];
[imageName appendString:@"-selected"];
view.image = [UIImage imageNamed:imageName];
}
结果:
答案 0 :(得分:0)
我已使用didSelectAnnotationView
方法
customPinView.centerOffset = CGPointMake(xOffset,yOffset);
并在didDeselectAnnotationView
方法
customPinView.centerOffset = CGPointMake(0, 0);