0

我是 iphone 开发新手。我想知道是否有任何方法可以检查一个人 iphone 是否指向特定位置。我知道有 CLLocation 框架来获取设备的标题。但是我还想检查它是否也指向正确的方向。目的地位置是通过经度和纬度获得的。有人可以建议我一种方法吗?

提前致谢

4

1 回答 1

0

CLLocationManager 将为您提供标题,请在此处查看文档-> https://developer.apple.com/library/mac/ipad/#documentation/CoreLocation/Reference/CLLocationManager_Class/CLLocationManager/CLLocationManager.html

另外,查看这个答案,他们谈论 CLLocationDirection 和 trueHeading -> https://stackoverflow.com/a/2043694/1104563

- - 更新

没有内置的方法可以做到这一点,您需要使用公式来确定这一点。公式可以在这里找到计算与两点相关的方位角

此外,您可以查看这个 SO 答案: CLLocation Category for Calculating Bearing w/ Haversine function

希望这可以帮助。祝你好运!

于 2012-08-03T11:07:24.247 回答