【问题标题】:Voice Turn by Turn navigation on Apple mapsApple 地图上的语音转轮导航
【发布时间】:2018-12-13 09:02:35
【问题描述】:
我正在开发一个 iOS 应用程序。它包含一个网络视图。在 web 视图中有一个地址链接。当用户点击该链接时,Apple 地图会打开,显示从用户当前位置到地址的路线。一切正常。问题是语音导航不起作用。我正在使用以下链接:
http://maps.apple.com/?saddr=lat0,long0&daddr=lat1,long1
有什么方法可以在苹果地图上启用语音提示。 iOS版本> 8.0
谢谢!
【问题讨论】:
标签:
ios
iphone
swift
mapkit
directions
【解决方案1】:
我找不到任何解决方案来在 Apple Maps 上转换语音方向,因此我从 Apple Maps 切换到 Google Maps,并在 info.plist 文件中进行了一些更改。语音导航现在在 Google 地图中运行良好。我在 info.plist 中添加了以下字段
<key>NSLocationWhenInUseUsageDescription</key>
<string>Please allow this app to get your current location</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>googlechromes</string>
<string>comgooglemaps</string>
</array>
并将苹果链接更改为谷歌地图链接
http://maps.apple.com/?saddr=lat0,long0&daddr=lat1,long1
comgooglemaps://?saddr=lat0,long0&daddr=lat1,long1
谢谢!