React Native:在 react-native-maps 中设置 UserLocation 样式
React Native: Style UserLocation in react-native-maps
如何在 React Native 地图上设置 UserLocation
的样式
<MapView
region={this.props.coordinate}
showsUserLocation={true} // <- style for this option
>
//My map markers
</MapView>
风格如
{
position:"absolute",
top:100,
right:100,
}
您不能直接设置 mapView 组件的样式。您所能做的就是将 mapView 放在普通 View 中,您可以根据需要为 View 设置样式。
您可以将样式放在单独的 .js 文件中,我想文件名中带有 "style" 后缀。
如何在 React Native 地图上设置 UserLocation
的样式
<MapView
region={this.props.coordinate}
showsUserLocation={true} // <- style for this option
>
//My map markers
</MapView>
风格如
{
position:"absolute",
top:100,
right:100,
}
您不能直接设置 mapView 组件的样式。您所能做的就是将 mapView 放在普通 View 中,您可以根据需要为 View 设置样式。
您可以将样式放在单独的 .js 文件中,我想文件名中带有 "style" 后缀。