gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 06:41:29 24 4
gpt4 key购买 nike

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

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

我应该去哪一个?我认为 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.

关于ios - 在 iOS 的 Swift 中使用 "locations array"或 "manager.location.coordinate"哪个来获取用户位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37897172/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com