`

WGS84坐标转火星坐标

 
阅读更多
http://www.keakon.net/2011/07/02/WGS84%E5%9D%90%E6%A0%87%E8%BD%AC%E7%81%AB%E6%98%9F%E5%9D%90%E6%A0%87%EF%BC%88iOS%E7%AF%87%EF%BC%89


http://yach.me/index.php/2011/11/09/%E7%81%AB%E6%98%9F%E5%9D%90%E6%A0%87%E7%B3%BB%E9%97%AE%E9%A2%98%E5%9C%A8-ios-%E4%B8%8B%E7%9A%84%E4%BF%AE%E6%AD%A3/


摘!

开始iOS开发后,终于发现了SDK中的玄机,总结如下:

iOS中获取GPS信息可以采用两种方法,一种是使用CLLocationManager,二是使用MKMapView的userLocation属性。经测试后发现,CLLocationManager所返回的位置信息是未经修正的原始GPS坐标,而MKMapView的userLocation属性返回的是经过修正的火星坐标系坐标。

不过MKMapView返回userLocation的属性的速度明显慢于CLLocationManager,而且也不支持CLLocationManager那些丰富的方法。以下的Private Method能将GPS的原始坐标转化成火星坐标系坐标。
@interface MKLocationManager

- (CLLocation*)_applyChinaLocationShift:(CLLocation*)arg;

- (BOOL)chinaShiftEnabled;

+ (id)sharedLocationManager;

@end



if ([[MKLocationManager sharedLocationManager] chinaShiftEnabled])

    userLocation = [[MKLocationManager sharedLocationManager] _applyChinaLocationShift:userLocation];
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics