8

常规注释引脚的原点位于底部的中间,因此引脚始终指向同一个位置。

但是当我添加我的自定义图像时,它的原点是图像的中心,所以每次放大或缩小,我的图像底部都会指向不同的位置。

在此处输入图像描述

这里我的别针应该指向巴黎的中心但是

在此处输入图像描述

但是当我放大时,我的图钉底部并没有指向巴黎的中心。

我正在尝试,CGRect.origin但没有得到任何有用的东西。

这是我的代码:

- (MKAnnotationView *)mapView:(MKMapView *)theMapView viewForAnnotation:(id <MKAnnotation>)annotation
{
    MKAnnotationView * customPinView = [[MKAnnotationView alloc] init];
    UIImage * img = [UIImage imageNamed:@"waterPin.png"] ;
    CGRect resizeRect;
    resizeRect.size.height = 40;
    resizeRect.size.width = 40;
    resizeRect.origin = (CGPoint){0.0f, 0.0f};
    UIGraphicsBeginImageContext(resizeRect.size);
    [img drawInRect:resizeRect];
    UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    customPinView.image = resizedImage;
    return customPinView;
}
4

1 回答 1

13

MKAnnotationView有一个centerOffset属性,您可以尝试设置它来调整图像偏移:

customPinView.centerOffset = CGPointMake(xOffset,yOffset);


不相关,但您应该使用initWithAnnotation而不是仅仅init用于创建MKAnnotationView. 使用和实现注释视图重用以提高性能
也没有什么坏处。dequeueReusableAnnotationViewWithIdentifier

我还建议不要在委托方法中以编程方式调整图像大小,而是使用已经调整大小的图像开始。然后,您customPinView.image = [UIImage imageNamed:@"resizedWaterPin.png"];无需每次都在运行时调整注释图像的大小。

于 2012-11-21T14:28:37.820 回答