7

如何转换CLLocation或转换CLLocationCoordinate2DCGPoint. 我见过

CGPoint point = [mapView convertCoordinate:myCoordinates toPointToView:self.view];

但我不需要mapView在我的情况下使用。我尝试使用谷歌搜索,但没有发现任何有用的信息。

编辑:我需要将地理坐标转换为 iPad 的屏幕坐标,如将十进制纬度/经度坐标转换为 iPad 屏幕坐标。我正在尝试根据转换后的坐标值绘制线/路径。

有没有直接的方法可以做到这一点,还是我需要编写一个算法来做同样的事情。

4

1 回答 1

9
CGPoint myPoint = CGPointMake(coordinate.longitude, coordinate.latitude);

请注意,轴是交换的。但是,除非您提供一个您希望将坐标转换为的坐标系,否则您的问题没有任何意义。

于 2013-06-21T12:14:10.113 回答