使用多个 waypoints 在 IOS 中启动 google 个地图

launch google maps in IOS with multiple waypoints

我需要在我的 Xamarin 表单应用程序中使用 url 启动 google 地图,并在 IOS 的地图上显示多个航路点。 我可以使用此 url:

以 2 点(源和目标)启动它
comgooglemaps-x-callback://?zoom=14&saddr= " + App.UserCurrentLatitude + "," + App.UserCurrentLongitude + "&daddr=" + item.xpos + "," + item.ypos + "&directionsmode=driving

如何在地图上显示多个点?

我尝试添加这个但没有帮助。

waypoints=24.743449,46.658885/24.744560,46.660666

有人吗??

经过大量谷歌搜索后,我让它工作成这样:

comgooglemaps - x - callback://?zoom=14&saddr= " + App.UserCurrentLatitude + "," + App.UserCurrentLongitude + "&daddr=" + item.xpos + ",+" + item.ypos + "+to:24.123456,+24.234567&directionsmode=driving

以防其他人正在寻找相同的东西。