在反应本机地图上显示用户位置

问题描述 投票:0回答:3

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

<MapView
    region={this.props.coordinate}
>
    //My map markers
</MapView>
react-native react-native-maps
3个回答
26
投票

设置

showsUserLocation

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

4
投票

您可以使用

MapView
的属性,称为
showsUserLocation
提到这里

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

Marker


0
投票
<MapView
region={this.props.coordinate}
showsUserLocation={true} >
© www.soinside.com 2019 - 2024. All rights reserved.