How to display user location on React Native Maps
<MapView
region={this.props.coordinate}
>
//My map markers
</MapView>
set showsUserLocation
true
<MapView
region={this.props.coordinate}
showsUserLocation={true}
>
//My map markers
</MapView>