尝试在 React Native IOS 模拟器上构建 Google 地图但发生错误

Trying to build Google Map on ReactNative IOS emulator but Error occured

我一直在尝试在我的 ios React Native 模拟器上构建 google 地图,但出现错误,指出必须将 AIRrgooglemap 目录添加到 Xcode 它有。

我研究了使其工作的方法,例如 link https://cuneyt.aliustaoglu.biz/en/using-google-maps-as-provider-in-ios-with-react-native/ 和其他方法,并开始在 Xcode 上实施和更改文件,但没有结果。以下是在 React Native IOS 模拟器和 Xcode build

中看到的错误

React Native IOS 错误:

[

Xcode 错误:

谢谢

关于iOS你的问题,我查了相关的文档,应该是少了一些步骤,建议你使用以下步骤:

1.npm install react-native-maps --save

2.react-native link react-native-maps

3.DownloadGoogleMaps库,复制到ios文件夹,linkXcode中的framework和configuration.bundle资源如图.

4.Configure package.json 文件。

 "scripts":{
"start": "node node_modules/react-native/local-cli/cli.js start",
"postinstall": "./node_modules/react-native-maps/enable-google-maps 'ios/GoogleMaps-3.1.0/**'", },

5.npm 安装

6.Configure AppDelegate.m.

中的代码

7.Write react-native 代码。

我自己做了一个sample项目,你可以参考release v0.0.1.