react-native: 0.53.3
react-native-maps@0.20.1
I'm trying to use react-native-maps and I keep getting this error. This is in a fresh project:
react-native init maps
cd maps/
npm install --save react-native-maps
react-native run-ios
And in App.js
I've added this:
...
import MapView from 'react-native-maps';
export default class App extends Component<Props> {
render() {
return (
<View>
<MapView
initialRegion={{
latitude: 37.78825,
longitude: -122.4324,
latitudeDelta: 0.0922,
longitudeDelta: 0.0421,
}}
/>
</View>
);
}
}
This seems to be the bare minimum to get this running, but my iOS simulator is complaining about "AIRMap".