在 React Native 地图上显示用户位置

Display user location on react native maps

如何在 React Native 地图上显示用户位置

<MapView
    region={this.props.coordinate}
>
    //My map markers
</MapView>

您可以使用 MapView 的 属性 调用 showsUserLocation 提到 here

或者您可以使用 GeoLocation 获取用户位置并将其显示在 Marker

设置showsUserLocation

<MapView
    region={this.props.coordinate}
    showsUserLocation={true}
  >
    //My map markers
</MapView>