如何在 React Native Maps 上显示方向

How to show direction on react Native Maps

我正在尝试在 React Native 地图上实现一辆移动的汽车,但折线组件似乎无法正常工作。关于如何像 Uber 那样实现它的任何想法。

您可以使用 react native direction 和 react native 地图库,这些地图库采用您的原点位置和另一个位置的坐标来绘制方向线

    ` <MapView initialRegion={…}>
       <MapViewDirections
       origin={origin}
    destination={destination}
    apikey={GOOGLE_MAPS_APIKEY}
  />
</MapView>`