我使用此代码获取经度和纬度。
(void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation {
NSLog(@"%f",newLocation.coordinate.latitude);
self.location = newLocation;
}
但是我得到的经度和纬度与实际地理位置有偏差。如何解决这个问题呢?