如何在 iOS 中使用 google 地图创建语音导航
how to create voice navigation in iOS with google maps
我已经在 iOS 中实现了 Google 地图 SDK,在此我向用户显示从他当前位置到其他位置的路线。到目前为止一切都很好,但我的要求是我需要使用语音导航来导航用户并且 directions.Is 可以在 iOS 中使用 google 地图实现语音导航吗?
您是否尝试实现实时导航?如果是这样,恐怕 Google 地图 API 的服务条款禁止这样做。查看 ToS 的第 10.4 c (iii) 节:
No navigation. You will not use the Service or Content for or in connection with (a) real-time navigation or route guidance; or (b) automatic or autonomous vehicle control.
https://developers.google.com/maps/terms?#section_10_4
此处唯一的选择是在导航模式下打开本机 Google 地图应用。您可以使用 Google 地图网址实现此目的:
https://developers.google.com/maps/documentation/urls/guide
此 API 中有带导航选项的路线模式。
我已经在 iOS 中实现了 Google 地图 SDK,在此我向用户显示从他当前位置到其他位置的路线。到目前为止一切都很好,但我的要求是我需要使用语音导航来导航用户并且 directions.Is 可以在 iOS 中使用 google 地图实现语音导航吗?
您是否尝试实现实时导航?如果是这样,恐怕 Google 地图 API 的服务条款禁止这样做。查看 ToS 的第 10.4 c (iii) 节:
No navigation. You will not use the Service or Content for or in connection with (a) real-time navigation or route guidance; or (b) automatic or autonomous vehicle control.
https://developers.google.com/maps/terms?#section_10_4
此处唯一的选择是在导航模式下打开本机 Google 地图应用。您可以使用 Google 地图网址实现此目的:
https://developers.google.com/maps/documentation/urls/guide
此 API 中有带导航选项的路线模式。