如何在 iOS 和 android 上实现谷歌地图?



我已经在我的反应原生项目中实现了地图,但在 iOS 的情况下,观察到 Apple 地图是可见的,但我需要一个谷歌地图代替苹果地图。 我已经通过这个链接。

谁能帮我一个准确的答案?

在 GitHubPage 上查看 react-native-maps :

对于iOS,除了提供mapStyle之外,您还需要执行以下操作。

import MapView, { PROVIDER_GOOGLE } from 'react-native-maps'
// ...
<MapView
provider={PROVIDER_GOOGLE}
customMapStyle={MapStyle}
>

然后添加 AirGoogleMaps 目录:

https://github.com/airbnb/react-native-maps/blob/1e71a21f39e7b88554852951f773c731c94680c9/docs/installation.md#ios

非官方的分步指南也可在 https://gist.github.com/heron2014/e60fa003e9b117ce80d56bb1d5bfe9e0

相关内容

  • 没有找到相关文章

最新更新