Я хочу показать свое пользовательское изображение в качестве маркера в react-native-maps
, как вы видите ниже, но оно ничего не показывает на карте
<MapView
style={{ flex: 1 }}
region={this.state.region}
ref={ref => { this.map = ref; }}
zoomControlEnabled={true}
>
<MapView.Marker
identifier="destination"
coordinate={direction.destination}
anchor={{ x: 0.5, y: 0.5 }}
>
<View style={{ width: 10, height: 10 }}>
<Image source={require('../assets/images/destination-3.png')} style={{ width: 10, height: 10 }}/>
</View>
</MapView.Marker>
</MapView>
Я вижу любой элемент внутри <MapView.Marker>
но <Image/>
и <ImageBackground>
.Это становится проблемой.