4

我有一组通过转换从核心位置框架工作委托方法获得的地理坐标获得的 CGPoints。集合是一组起点/终点。

我从 CoreLocation 委托方法获取坐标

CLLocationCoordinate2D coordinate;
CLLocationDegrees latitude;
CLLocationDegrees longitude;

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{
CLLocation *location = [locations lastObject];

latitude = location.coordinate.latitude;
longitude = location.coordinate.longitude;
}

我正在将当前的纬度和经度转换为 CGPoint,如下所示

CGPoint startPoint = [mapView convertCoordinate:retrievedCoordinate toPointToView:self.view];
CGPoint endPoint = [mapView convertCoordinate:retrievedEndCoordinate toPointToView:self.view];

我需要根据集合中的值在我的 UIView 上画线。如何正确调整/缩放相对于 UIView 的 CGPoints。UIView 帧大小为 (0, 0, 768, 1004)。

这是我所做的缩放

- (CGPoint)convertLatLongCoord:(CGPoint)latLong {
CGSize screenSize = [UIScreen mainScreen].applicationFrame.size;
CGFloat SCALE = MIN(screenSize.width, screenSize.height) / (2.0 * EARTH_RADIUS);
CGFloat OFFSET = MIN(screenSize.width, screenSize.height) / 2.0;

CGFloat x = EARTH_RADIUS * cos(latLong.x) * cos(latLong.y) * SCALE + OFFSET;
CGFloat y = EARTH_RADIUS * cos(latLong.x) * sin(latLong.y) * SCALE + OFFSET;

return CGPointMake(x, y);
}

在哪里#define EARTH_RADIUS 6371

线条图不正确,因为在某处转换为 CGPoint 可能是错误的。我究竟做错了什么。需要帮助。

4

1 回答 1

1

要将 CLLocationCoordinate2D 转换为 CGPoint,请参见此处的答案 - https://stackoverflow.com/a/372 ​​76779/2697425

于 2016-05-17T13:01:18.880 回答