Я использую Map-Box на Reaction-native 0.55.4, так как вы видите мой код следующим образом, код работает правильно, но маркер не изменяется пользователями.Итак, я хочу, чтобы пользователи могли выбирать его местоположение по маркеру, так что мне делать?любая помощь?
renderAnnotations () {
return (
<Mapbox.PointAnnotation
key='pointAnnotation'
id='pointAnnotation'
coordinate={[11.254, 43.772]}>
<View style={styles.annotationContainer}>
<View style={styles.annotationFill} />
</View>
<Mapbox.Callout title='Look! An annotation!' />
</Mapbox.PointAnnotation>
)
}
render() {
return (
<View style={styles.container}>
<Mapbox.MapView
styleURL={Mapbox.StyleURL.Dark}
zoomLevel={15}
centerCoordinate={[11.256, 43.770]}
style={styles.container}
showUserLocation={true}>
{this.renderAnnotations()}
</Mapbox.MapView>
</View>
);
}