使用 "locations array" 或 "manager.location.coordinate" in Swift in iOS 中的哪一个来获取用户位置?

Which one to use "locations array" or "manager.location.coordinate" in Swift in iOS to get user location?

我想获取用户的位置。这可能是大概的位置,没关系。 在didUpdateLocations方法中,我看到了两种获取坐标的方法。

  1. 使用manager.location.coordinate
  2. 使用locations数组

我应该去哪一个?我认为位置数组将包含用户的最近位置,因为我在用户打开应用程序后立即开始 startUpdatingLocation()

那么我应该用哪一个来获取坐标呢? manager.location.coordinate 在这种情况下做什么?

注意:定位精度不需要精确到 10 米。粗略估计就够了。

这是我的代码:

func initLocationUpdates() {
    if CLLocationManager.locationServicesEnabled() {
        print("going to get location")
        locationManager.delegate = self
        locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters
        locationManager.startUpdatingLocation()
    }
    else {
        print("location services disabled")
    }
}

func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    let locValue:CLLocationCoordinate2D = manager.location!.coordinate
    print("locations = \(locValue.latitude) \(locValue.longitude)")

    /*
    let userLocation:CLLocation = locations[0]  // or maybe even locations.last
    let long = userLocation.coordinate.longitude;
    let lat = userLocation.coordinate.latitude;
    print("lat: ", lat, " --- long: ", long)
    */

    locationManager.stopUpdatingLocation()
}

我更喜欢数组而不是实例变量,因为 desiredAccuracy 的工作方式 - 它不能保证您收到的位置更新将具有您要求的准确性 - 只是系统会尽最大努力提供它们。根据位置管理器的行为方式,您可能会在 locations 数组中获得多个更新,但准确度不同。然后您可以过滤数组以找到最准确的数组。

关键是,如果多个更新到达同一个 didUpdateLocations: 调用,而您只使用 manager.location,您可能会错过一个更新。丢失的更新肯定不是最新的,但它可能是迄今为止收到的最准确的更新。

由于您已将 desiredAccuracy 设置为非常高的水平(十米),我猜精度对您来说比时间更重要 - 系统需要一段时间才能提供更新该精度级别(如果您在室内或因其他原因无法使用 GPS,它可能永远不会到达)。因此,上述情况发生的可能性是合理的。

至于实例变量location的用途,docs表明它旨在在应用程序重新启动时的某些情况下使用:

In iOS 4.0 and later, this property may contain a more recent location object at launch time. Specifically, if significant location updates are running and your app is terminated, this property is updated with the most recent location data when your app is relaunched (and you create a new location manager object). This location data may be more recent than the last location event processed by your app.