I am getting this error when trying to render a marker on the react-native-maps packages MapView. I have tried to update my version of react native but have encountered many other errors, so I am sticking with 0.38.1. I have tried explicitly setting a prop called 'accessibilityLabel' with a string value but that doesn't work.
<MapView
region={{
latitude: this.state.lat,
longitude: this.state.lng,
latitudeDelta: this.state.latDelta,
longitudeDelta: this.state.lngDelta,
}}
onRegionChangeComplete={this.onRegionChange}
>
<MapView.Marker
coordinate={this.state.marker.latlng}
title={this.state.marker.title}
/>
</MapView>
Thanks in advance.