我正在尝试从 GPS 检索数据,但它不是那么准确。这是一个屏幕截图:
它与模拟器上的 GPS 仿真配合得很好。我想知道如何改进这一点。
这是我尝试过的代码:
UserLocation = [[CLLocationManager alloc] init];
#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 60000
[UserLocation setPausesLocationUpdatesAutomatically:NO];
[UserLocation setActivityType:CLActivityTypeFitness];
#endif
UserLocation.delegate = self;
[UserLocation setDistanceFilter:kCLDistanceFilterNone];
[UserLocation setDesiredAccuracy:kCLLocationAccuracyBestForNavigation];
[UserLocation startUpdatingLocation];
然后我每秒检索一次数据并检查它是否与前一个不同。