问题
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".
回答1:
In my case I had the same result after following the instructions and the solution at the end was really simple.
I went to Xcode -> Clean -> Build.
There I saw that I had 2 errors in my code:
Expected ';' after module name (@import GoogleMaps)
Use of undeclared identifier ([GMSPlacesClient provideAPIKey:@"MY_KEY"];)
So, I added ';' and deleted the line GMSPlacesClient provideAPIKey:@"MY_KEY"];
After that I executed again 'npm run ios' and all worked like a charm!
There are other solutions here:
https://github.com/react-community/react-native-maps/issues/1798
https://github.com/react-community/react-native-maps/issues/2064
来源:https://stackoverflow.com/questions/48914735/native-component-for-airmap-does-not-exist