gpt4 book ai didi

ios - 打开 Google map 后 GPS 位置更新更准确?

转载 作者:行者123 更新时间:2023-11-29 13:42:51 24 4
gpt4 key购买 nike

我遇到了一个奇怪的问题。我有一个应用程序,它使用 GPS 对显示的 map 进行基于位置的更新。我发现应用程序中的 GPS 精度很差,但如果我打开 Google map 然后返回到我的应用程序,则精度非常准确。

有什么想法吗?

- (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation
{
double lat;
double lng;
lat = newLocation.coordinate.latitude;
lng = newLocation.coordinate.longitude;

//Other stuff that uses the location
}

最佳答案

当您像这样创建位置管理器时,您可以要求特定的准确性:

[manager setDesiredAccuracy:kCLLocationAccuracyBest];

参见 documentation here .

关于ios - 打开 Google map 后 GPS 位置更新更准确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8597141/

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