gpt4 book ai didi

ios - 从适用于 iOS 的 Google Maps SDK 中提取航向(罗盘)

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:35:13 33 4
gpt4 key购买 nike

在我的印象中,iOS 中 Google map 的指南针效果非常好。我说的是 map 中蓝色小“我的位置”点的罗盘箭头,请参阅 Google Maps SDK - My Location .在最近的1.7版本中引入了enter link description here .我不知道他们是如何设法获得如此准确和稳定的指南针的,但我希望我的应用程序也能如此,因为它依赖于精确的航向信息。

因此问题:是否可以从 Google Maps SDK 中提取航向角?

最佳答案

需要设置位置管理器并调用startUpdatingHeading:

self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
[self.locationManager startUpdatingHeading];

然后包含以下委托(delegate)方法,您应该能够从 newHeading 中提取航向角:

- (void)locationManager:(CLLocationManager *)manager didUpdateHeading:(CLHeading *)newHeading
{
NSLog(@"Updated heading: %@", newHeading);
}

关于ios - 从适用于 iOS 的 Google Maps SDK 中提取航向(罗盘),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22843018/

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