在IOS上,我使用的是委托(delegate)方法:\
func routingService(routingService: SKRoutingService!, didChangeCurrentAdvice currentAdvice: SKRouteAdvice!, isLastAdvice: Bool) {
print("adviceInstruction")
print(currentAdvice.adviceInstruction)
delegate?.didChangeCurrentAdvice(currentAdvice.adviceInstruction)
}
currentAdvice.adviceInstruction 在模拟器模式下运行时,在列出距离时返回奇怪的指令,例如:
in 200 50 yards turn right
我希望能够在我的应用中说明您要转向的位置和距离。所以我预计会在 50 码处右转。还有其他方法吗?
Best Answer-推荐答案 strong>
见 this文章的上下文。
如果您想要“人类可读”的文本说明,请使用 TTS 选项获取音频建议:http://developer.skobbler.com/getting-started/ios#sec24
关于ios - currentAdvice.adviceInstruction 返回奇怪的结果,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/33700936/
|