Display user location on react native maps

Mahdi Bashirpour

How to display user location on React Native Maps

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

set showsUserLocation true

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

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related