我知道我们需要添加API密钥才能查看Google地图然后,如果react-native-maps与Expo集成在一起,那么我们仅通过从React-native导入就可以使用MapView。那么在本机Map Expo中何处添加API密钥?
您需要在app.json
中添加按键,这是您在expo guide上看到的展览会指南>
在app.json中,将API密钥从android.config.googleSignIn复制到android.config.googleMaps.apiKey
应该看起来像这样:
{
"expo": {
"ios": {
"config": {
"googleMapsApiKey": "YOUR_GOOGLE_MAP_API_KEY_HERE"
}
},
"android": {
"config": {
"googleMaps": {
"apiKey": "YOUR_GOOGLE_MAP_API_KEY_HERE"
}
}
},
}
}