react-nativereact-native-maps

Display user location on react native maps


How to display user location on React Native Maps

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

Solution

  • set showsUserLocation true

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