1

更新

我需要在 a 上画一个圆MKMapView,我可以在其中获得圆的半径及其中心坐标。但是,我还希望圆圈成为 的子视图MKMapView,以便地图视图可以在圆圈下方滚动,在地图移动时更新其中心坐标,并在地图放大和缩小时更新其半径。

有谁知道我如何能够做到这一点?


这是问题的原始措辞

MKMapView使用下面的代码在 a 上画了一个圆圈:

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.locationManager = [[CLLocationManager alloc] init];
    self.locationManager.delegate = self;

    self.region = [MKCircle circleWithCenterCoordinate:self.locationManager.location.coordinate radius:kViewRegionDefaultDistance];
    [self.mapView addOverlay:self.region];
}

- (MKOverlayPathRenderer *)mapView:(MKMapView *)map viewForOverlay:(id <MKOverlay>)overlay
{
    MKCircleRenderer *region = [[MKCircleRenderer alloc] initWithOverlay:overlay];
    region.strokeColor = [UIColor blueColor];
    region.fillColor = [[UIColor blueColor] colorWithAlphaComponent:0.4];
    return region;
}

这有效并在地图视图上产生一个圆圈。但是,当我滚动地图视图时,圆圈会随之移动。我希望圆圈保持静止并让地图视图在圆圈下方滚动。

重要的是要注意,我需要获取圆的中心坐标和半径才能创建区域。出于这个原因,我不能简单地在 MKMapView 上绘制 UIView,因为我无法获得以米为单位的 UIView 的半径。

4

2 回答 2

1

我解决了!

步骤1:

我创建了一个UIView并将其作为子视图添加到地图视图中。重要的是要注意,我确保UIView将地图视图居中。这很重要,因为您将使用 的centerCoordinate属性MKMapView来计算半径。

self.region = [[UIView alloc] initWithFrame:centerOfMapViewFrame];
self.region.contentMode = UIViewContentModeRedraw;
self.region.userInteractionEnabled = NO;
self.region.alpha = 0.5;
self.region.layer.cornerRadius = widthOfView/2;
self.region.backgroundColor = [UIColor blueColor];

[self.mapView addSubview:self.region];

下图显示了UIView作为子视图添加到mapView.

在此处输入图像描述

第2步:

根据地图视图的中心坐标和 UIView 的边缘坐标计算半径。

CLLocationCoordinate2D edgeCoordinate = [self.mapView convertPoint:CGPointMake((CGRectGetWidth(self.region.bounds)/2), 0) toCoordinateFromView:self.region]; //self.region is the circular UIView

CLLocation *edgeLocation = [[CLLocation alloc] initWithLatitude:edgeCoordinate.latitude longitude:edgeCoordinate.longitude];
CLLocation *centerLocation = [[CLLocation alloc] initWithLatitude:self.mapView.centerCoordinate.latitude longitude:self.mapView.centerCoordinate.longitude];

CGFloat radius = [edgeLocation distanceFromLocation:centerLocation]; //is in meters

下图显示了edgeLocation和 上的注释centerLocation

在此处输入图像描述

于 2015-08-17T21:08:09.467 回答
0

Swift 4.2/5 适配

let edgeCoordinate = self.mapView.convert(mapView.center, toCoordinateFrom: overlayView)

let edgeLocation: CLLocation = .init(latitude: edgeCoordinate.latitude, longitude: edgeCoordinate.longitude)

let centerLocation: CLLocation = .init(latitude: mapView.centerCoordinate.latitude, longitude: mapView.centerCoordinate.longitude)

let radius = edgeLocation.distance(from: centerLocation)

// do something with the radius

overlayView您创建的用于表示半径的自定义圆在哪里

于 2019-06-25T00:47:47.683 回答