如何在 React Native 地图上显示用户位置
<MapView
region={this.props.coordinate}
>
//My map markers
</MapView>
设置
showsUserLocation
真
<MapView
region={this.props.coordinate}
showsUserLocation={true}
>
//My map markers
</MapView>
<MapView
region={this.props.coordinate}
showsUserLocation={true} >