常规注释引脚的原点位于底部中间 所以,针总是指向同一个地方。
但是当我添加自定义图像时,它的原点是图像的中心,所以每次放大或缩小,我的图像底部指向不同的位置。
这里我的引脚应该指向巴黎的中心但是
但是当我放大时,我的图钉的底部并没有指向巴黎的中心。
我正在尝试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;
}
答案 0 :(得分:13)
MKAnnotationView
有centerOffset
属性,您可以尝试设置以调整图像偏移量:
customPinView.centerOffset = CGPointMake(xOffset,yOffset);
不相关,但您应使用initWithAnnotation
代替init
来创建MKAnnotationView
。
使用dequeueReusableAnnotationViewWithIdentifier
并实现注释视图重用以提高性能也没有什么坏处。
我还建议不要以编程方式调整委托方法中的图像大小,而是使用已调整大小的图像开始。然后,您可以只执行customPinView.image = [UIImage imageNamed:@"resizedWaterPin.png"];
,而无需每次都花费运行时调整注释图像的大小。