gpt4 book ai didi

swift - 如何在 Sygic 中获得我的导航速度

转载 作者:行者123 更新时间:2023-11-28 05:48:55 24 4
gpt4 key购买 nike

我的问题很简单,我可以开始导航,获取剩余时间和从当前位置到路线终点的距离,但我没有找到如何获取当前导航速度

最佳答案

获取当前速度和与您的 GPS 位置相关的其他信息的最佳方法是使用 SYPositioning

您需要将您的类注册为 SYPositioningDelegate,然后在委托(delegate)方法 SYPositioningDelegate.positioning(_ positioning: SYPositioning, didUpdate position: SYPosition) 中更新当前速度

SYPositioning.shared().delegate = self

...

func positioning(_ positioning: SYPositioning, didUpdate position: SYPosition) {
let currentSpeed = position.speed
print("current speed is \(Int(currentSpeed))km/h")
}

关于swift - 如何在 Sygic 中获得我的导航速度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53633794/

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