速度精度-最佳做法

时间:2018-06-29 12:16:08

标签: ios swift location cllocationmanager

我想以我能获得的最高频率速度获得最准确和最新的信息。我在label.text中显示速度和准确性

因此,我使用locationManager.desiredAccuracy = kCLLocationAccuracyBestForNavigation

并检查(越低越好)

func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    let location = locations[0]
    gpsAccuracyHorizontal = String(location.horizontalAccuracy)
}

但是我想知道是否有更好的解决方案。甚至不能100%地确定.horizo​​ntalAccuracy是否与速度相关或仅与纬度和经度相关?

0 个答案:

没有答案