首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何调整区域以适应刚刚出现的自定义注释标注?

如何调整区域以适应刚刚出现的自定义注释标注?
EN

Stack Overflow用户
提问于 2012-10-27 00:00:24
回答 2查看 2.9K关注 0票数 3

我使用自定义的MKAnnotationView子类。在mapView:didSelectAnnotationView: my Map的委托方法中,我调用这个类的方法,它以图像作为子视图添加UIImageView --它充当我的自定义注释标注。

使用默认MKPinAnnotationView映射时,会自动调整映射区域以显示刚刚出现的注释标注。如何使用自定义MKAnnotationView子类实现此行为?

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2013-01-11 03:03:11

电流溶液

我已经构建了演示项目,实现了下面讨论的内容:参见那里的 AdjustRegionToFitAnnotationCallout项目。

最新的iOS7更改了Map的MKMapView呈现地图注释的方式,使我重新讨论了这个问题。我对此做了更准确的思考,并想出了更好的解决方案。我将把先前的解决方案留在这个答案的底部,但请记住--我这样做是大错特错的。

首先,我们需要一个助手CGRectTransformToContainRect(),它扩展给定的CGRect以包含另一个CGRect

注意:它的行为与CGRectUnion()不同-- CGRectUnion()只返回包含两个CGRects的最小CGRect,而下面的助手允许并行移动,即CGRectTransformToContainRect(CGRectMake(0, 0, 100, 100), CGRectMake(50, 50, 100, 100))等于(CGRect){50, 50, 100, 100},而不是CGRectUnion()那样的(CGRect){0, 0, 150, 150}。这种行为正是我们所需要的,当我们只想让调整使用平行运动,并希望避免地图的缩放。

代码语言:javascript
复制
static inline CGRect CGRectTransformToContainRect(CGRect rectToTransform, CGRect rectToContain) {
    CGFloat diff;
    CGRect transformedRect = rectToTransform;


    // Transformed rect dimensions should encompass the dimensions of both rects
    transformedRect.size.width = MAX(CGRectGetWidth(rectToTransform), CGRectGetWidth(rectToContain));
    transformedRect.size.height = MAX(CGRectGetHeight(rectToTransform), CGRectGetHeight(rectToContain));


    // Comparing max X borders of both rects, adjust if
    if ((diff = CGRectGetMaxX(rectToContain) - CGRectGetMaxX(transformedRect)) > 0) {
        transformedRect.origin.x += diff;
    }
    // Comparing min X borders of both rects, adjust if
    else if ((diff = CGRectGetMinX(transformedRect) - CGRectGetMinX(rectToContain)) > 0) {
        transformedRect.origin.x -= diff;
    }


    // Comparing max Y borders of both rects, adjust if
    if ((diff = CGRectGetMaxY(rectToContain) - CGRectGetMaxY(transformedRect)) > 0) {
        transformedRect.origin.y += diff;
    }
    // Comparing min Y borders of both rects, adjust if
    else if ((diff = CGRectGetMinY(transformedRect) - CGRectGetMinY(rectToContain)) > 0) {
        transformedRect.origin.y -= diff;
    }


    return transformedRect;
}

Adjust method wrapped into an Objective-C category MKMapView(Extensions):

@implementation MKMapView (Extensions)

- (void)adjustToContainRect:(CGRect)rect usingReferenceView:(UIView *)referenceView  animated:(BOOL)animated {
    // I just like this assert here
    NSParameterAssert(referenceView);

    CGRect visibleRect = [self convertRegion:self.region toRectToView:self];

    // We convert our annotation from its own coordinate system to a coodinate system of a map's top view, so we can compare it with the bounds of the map itself
    CGRect annotationRect = [self convertRect:rect fromView:referenceView.superview];

    // Fatten the area occupied by your annotation if you want to have a margin after adjustment
    CGFloat additionalMargin = 2;
    adjustedRect.origin.x -= additionalMargin;
    adjustedRect.origin.y -= additionalMargin;
    adjustedRect.size.width += additionalMargin * 2;
    adjustedRect.size.height += additionalMargin * 2;

    // This is the magic: if the map must expand its bounds to contain annotation, it will do this 
    CGRect adjustedRect = CGRectTransformToContainRect(visibleRect, annotationRect);

    // Now we just convert adjusted rect to a coordinate region
    MKCoordinateRegion adjustedRegion = [self convertRect:adjustedRect toRegionFromView:self];

    // Trivial regionThatFits: sugar and final setRegion:animated: call
    [self setRegion:[self regionThatFits:adjustedRegion] animated:animated];
}

@end

现在,控制器和视图:

代码语言:javascript
复制
@interface AnnotationView : MKAnnotationView
@property AnnotationCalloutView *calloutView;
@property (readonly) CGRect annotationViewWithCalloutViewFrame;
@end

@implementation AnnotationView 

- (void)showCalloutBubble {
    // This is a code where you create your custom annotation callout view
    // add add it using -[self addSubview:]
    // At the end of this method a callout view should be displayed.
}

- (CGRect)annotationViewWithCalloutViewFrame {
    // Here you should adjust your annotation frame so it match itself in the moment when annotation callout is displayed and ...

    return CGRectOfAdjustedAnnotation; // ...
}

@end

当地图上选择AnnotationView-classed类注释时,它将其calloutView添加为子视图,从而显示自定义注释标注视图。它使用MKMapViewDelegate的方法完成:

代码语言:javascript
复制
- (void)mapView:(MapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view {
    // AnnotationPresenter is just a class that contains information to be displayed on callout annotation view
    if ([view.annotation isKindOfClass:[AnnotationPresenter class]]) {
        // Hide another annotation if it is shown
        if (mapView.selectedAnnotationView != nil && [mapView.selectedAnnotationView isKindOfClass:[AnnotationView class]] && mapView.selectedAnnotationView != view) {
            [mapView.selectedAnnotationView hideCalloutBubble];
        }
        mapView.selectedAnnotationView = view;

        annotationView *annotationView = (annotationView *)view;

        // This just adds *calloutView* as a subview    
        [annotationView showCalloutBubble];

        [mapView adjustToContainRect:annotationView.annotationViewWithCalloutViewFrame usingReferenceView:annotationView animated:NO];
    }
}

当然,您的实现可能与我在这里描述的不同(我的是!)。以上代码中最重要的部分当然是[MKMapView adjustToContainRect:usingReferenceView:animated:方法。现在我对目前的解决方案和我对这个(和一些相关的)问题的理解感到非常满意。如果您需要任何关于上述解决方案的评论,请随时与我联系(请参阅配置文件)。

下面的Apple对于理解诸如-MKMapView转换的方法中发生了什么非常有用:

Class/MKMapView/MKMapView.html

http://developer.apple.com/library/ios/#documentation/MapKit/Reference/MapKitDataTypesReference/Reference/reference.html

http://developer.apple.com/library/ios/#documentation/MapKit/Reference/MapKitFunctionsReference/Reference/reference.html

此外,WWDC 2013年会议的头10-15分钟“地图套件中的新东西”(#304)非常适合观看苹果工程师所做的整个“带注释的地图”设置的出色的快速演示。

初始解决方案(在iOS7中不工作,不使用它,而是使用上面的解决方案)

不知何故,我忘了一次回答我的问题。以下是我现在使用的完整解决方案(为可读性略微编辑):

首先,要将一些映射逻辑封装在像MapKit+Helpers.h这样的帮助文件中。

代码语言:javascript
复制
typedef struct {
    CLLocationDegrees top;
    CLLocationDegrees bottom;
} MKLatitudeEdgedSpan;

typedef struct {
    CLLocationDegrees left;
    CLLocationDegrees right;
} MKLongitudeEdgedSpan;

typedef struct {
    MKLatitudeEdgedSpan latitude;
    MKLongitudeEdgedSpan longitude;
} MKEdgedRegion;

MKEdgedRegion MKEdgedRegionFromCoordinateRegion(MKCoordinateRegion region) {
    MKEdgedRegion edgedRegion;

    float latitude = region.center.latitude;
    float longitude = region.center.longitude;
    float latitudeDelta = region.span.latitudeDelta;
    float longitudeDelta = region.span.longitudeDelta;

    edgedRegion.longitude.left = longitude - longitudeDelta / 2;
    edgedRegion.longitude.right = longitude + longitudeDelta / 2;
    edgedRegion.latitude.top = latitude + latitudeDelta / 2;
    edgedRegion.latitude.bottom = latitude - latitudeDelta / 2;

    return edgedRegion;
}

与MKCoordinateRegion (中心坐标+ spans)一样,MKEdgedRegion只是定义区域的一种方式,而是使用其边缘的坐标。

MKEdgedRegionFromCoordinateRegion()是一种不言自明的转换方法。

假设我们有下面的注释类,其中包含了作为子视图的标注。

代码语言:javascript
复制
@interface AnnotationView : MKAnnotationView
@property AnnotationCalloutView *calloutView;
@end

当地图上选择AnnotationView-classed类注释时,它将其calloutView添加为子视图,从而显示自定义注释标注视图。它使用MKMapViewDelegate的方法完成:

代码语言:javascript
复制
- (void)mapView:(MapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view {
    // AnnotationPresenter is just a class that contains information to be displayed on callout annotation view
    if ([view.annotation isKindOfClass:[AnnotationPresenter class]]) {
        // Hide another annotation if it is shown
        if (mapView.selectedAnnotationView != nil && [mapView.selectedAnnotationView isKindOfClass:[AnnotationView class]] && mapView.selectedAnnotationView != view) {
            [mapView.selectedAnnotationView hideCalloutBubble];
        }
        mapView.selectedAnnotationView = view;

        annotationView *annotationView = (annotationView *)view;

        // This just adds *calloutView* as a subview    
        [annotationView showCalloutBubble];

        /* Here the trickiest piece of code goes */

        /* 1. We capture _annotation's (not callout's)_ frame in its superview's (map's!) coordinate system resulting in something like (CGRect){4910547.000000, 2967852.000000, 23.000000, 28.000000} The .origin.x and .origin.y are especially important! */
        CGRect annotationFrame = annotationView.frame;

        /* 2. Now we need to perform an adjustment, so our frame would correspond to the annotation view's _callout view subview_ that it holds. */
        annotationFrame.origin.x = annotationFrame.origin.x + ANNOTATION_CALLOUT_TRIANLE_HALF; // Mine callout view has small x offset - you should choose yours!
        annotationFrame.origin.y = annotationFrame.origin.y - ANNOTATION_CALLOUT_HEIGHT / 2; // Again my custom offset.
        annotationFrame.size = placeAnnotationView.calloutView.frame.size; // We can grab calloutView size directly because in its case we don't care about the coordinate system.

        MKCoordinateRegion mapRegion = mapView.region;

        /* 3. This was a long run before I did stop to try to pass mapView.view as an argument to _toRegionFromView_. */
        /* annotationView.superView is very important - it gives us the same coordinate system that annotationFrame.origin is based. */
        MKCoordinateRegion annotationRegion = [mapView convertRect:annotationFrame toRegionFromView:annotationView.superview];

        /* I hope that the following MKEdgedRegion magic is self-explanatory */
        MKEdgedRegion mapEdgedRegion = MKEdgedRegionFromCoordinateRegion(mapRegion);
        MKEdgedRegion annotationEdgedRegion = MKEdgedRegionFromCoordinateRegion(annotationRegion);

        float diff;

        if ((diff = (annotationEdgedRegion.longitude.left - mapEdgedRegion.longitude.left)) < 0 ||
            (diff = (annotationEdgedRegion.longitude.right - mapEdgedRegion.longitude.right)) > 0)
            mapRegion.center.longitude += diff;

        if ((diff = (annotationEdgedRegion.latitude.bottom - mapEdgedRegion.latitude.bottom)) < 0 ||
            (diff = (annotationEdgedRegion.latitude.top - mapEdgedRegion.latitude.top)) > 0)
            mapRegion.center.latitude += diff;

        mapView.region = mapRegion;
    }
}
票数 6
EN

Stack Overflow用户

发布于 2016-01-15 09:49:11

我正在寻找一个类似的解决方案,以适应一个路线和一个标注在可见的矩形屏幕。我尝试了一些解决方案,但最终在setVisibleMapRect:edgePadding:animated:上设置了足够的填充。可能没那么复杂,但基本上是做我所需要的。

代码语言:javascript
复制
MKMapRect routeMapRect = myRoute.polyline.boundingMapRect;
CGFloat padding = myCallout.bounds.width / 2.0;
[myMapView setVisibleMapRect: routeMapRect edgePadding:UIEdgeInsetsMake(padding, padding, padding, padding) animated:YES];

当然,这可以进行更多的优化,例如,通过检测实际需要填充物的一侧,并在另一侧设置一个较小的填充。但你知道这个主意。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/13095911

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档