gpt4 book ai didi

ios - 获取用户当前位置/坐标

转载 作者:行者123 更新时间:2023-11-30 13:13:26 25 4
gpt4 key购买 nike

如何存储用户的当前位置并在 map 上显示该位置?

我能够在 map 上显示预定义的坐标,只是不知道如何从设备接收信息。

此外,我知道我必须将一些项目添加到 Plist 中。我怎样才能做到这一点?

最佳答案

要获取用户的当前位置,您需要声明:

let locationManager = CLLocationManager()

viewDidLoad() 中,您必须实例化 CLLocationManager 类,如下所示:

// Ask for Authorisation from the User.
self.locationManager.requestAlwaysAuthorization()

// For use in foreground
self.locationManager.requestWhenInUseAuthorization()

if CLLocationManager.locationServicesEnabled() {
locationManager.delegate = self
locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters
locationManager.startUpdatingLocation()
}

然后在 CLLocationManagerDelegate 方法中您可以获取用户当前的位置坐标:

func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
guard let locValue: CLLocationCoordinate2D = manager.location?.coordinate else { return }
print("locations = \(locValue.latitude) \(locValue.longitude)")
}

在 info.plist 中,您必须添加 NSLocationAlwaysUsageDescription和您的自定义警报消息,例如; AppName(演示应用程序)想要使用您当前的位置。

关于ios - 获取用户当前位置/坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38486859/

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