是否有任何 React Native 库可以导航到带有方向和多个 waypoints 的 Google 地图应用程序?

Is there any React Native library that can navigate to Google maps app with directions and multiple waypoints?

我希望能够从我的应用程序打开 Google 地图应用程序并从我的应用程序数据中获取多个 waypoints 的路线。

如果您查看此图书馆员 react-native-directions。 .在那里你可以提供纬度,经度,它会打开地图。方向。在引擎盖下它只调用 react-nativeLinking

const url = `https://www.google.com/maps/dir/?api=1&${getParams(
    params
  )}${getWaypoints(waypoints)}`

所以你可以这样做,也可以使用库。

希望对您有所帮助。有疑问请随意