在iOS中获取注释标注的位置

时间:2011-03-01 19:22:08

标签: iphone ios mapkit mkannotation mkannotationview

情况就是这样:我正在使用MapKit在地图上显示多个位置。我有代码来计算允许地图上的所有点适合窗口的边界。我刚刚添加了代码以允许最近位置的标注气泡(正确的术语?)出现。不幸的是,标注气泡不适合窗口的范围。理想情况下,我希望缩放调整以适应所有注释以及最近位置的标注气泡。有关如何做到这一点的任何建议?这是我的缩放方法:

-(void)zoomToFitMapAnnotations:(MKMapView*)mv
{   
    if([mv.annotations count] == 0)
            return;

    CLLocationCoordinate2D topLeftCoord;
    topLeftCoord.latitude = -90;
    topLeftCoord.longitude = 180;

    CLLocationCoordinate2D bottomRightCoord;
    bottomRightCoord.latitude = 90;
    bottomRightCoord.longitude = -180;

    for(WaybackAnnotation *annotation in [mv annotations])
    {
        if ([annotation isKindOfClass:[WaybackAnnotation class]])
        {
            topLeftCoord.longitude = fmin(topLeftCoord.longitude, annotation.coordinate.longitude);
            topLeftCoord.latitude = fmax(topLeftCoord.latitude, annotation.coordinate.latitude);

            bottomRightCoord.longitude = fmax(bottomRightCoord.longitude, annotation.coordinate.longitude);
            bottomRightCoord.latitude = fmin(bottomRightCoord.latitude, annotation.coordinate.latitude);
        }
    }

    MKCoordinateRegion region;
    region.center.latitude = topLeftCoord.latitude - (topLeftCoord.latitude - bottomRightCoord.latitude) * 0.5;
    region.center.longitude = topLeftCoord.longitude + (bottomRightCoord.longitude - topLeftCoord.longitude) * 0.5;
    region.span.latitudeDelta = fabs(topLeftCoord.latitude - bottomRightCoord.latitude) * 1.1; // Add a little extra space on the sides
    region.span.longitudeDelta = fabs(bottomRightCoord.longitude - topLeftCoord.longitude) * 1.1; // Add a little extra space on the sides

    region = [mv regionThatFits:region];
    [mv setRegion:region animated:YES];
}

提前致谢! 詹姆斯

1 个答案:

答案 0 :(得分:3)

由于气泡始终显示在引脚上方,因此顶部需要一些额外的填充。您知道屏幕像素中填充的高度。使用MKMapView转换方法(-convertRect:toRegionFromView:和朋友)将这些转化为地理坐标。