我有一组通过转换从核心位置框架工作委托方法获得的地理坐标获得的 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 可能是错误的。我究竟做错了什么。需要帮助。