gpt4 book ai didi

react-native - 检查谷歌地图应用程序是否安装在 react-native iOS 中

转载 作者:行者123 更新时间:2023-12-04 04:51:50 25 4
gpt4 key购买 nike

我尝试使用 npm 模块 react-native-check-app-install但我不能总是得到结果是错误的。

还尝试了 react-native-installed-apps获取手机中安装的应用程序列表,但这总是返回空列表。

最佳答案

您确定声明了 URL 方案吗?

https://developers.google.com/maps/documentation/ios-sdk/start#step_6_declare_the_url_schemes_used_by_the_api

完成此操作后,您不需要额外的软件包来检查您是否可以打开 Google map 。您可以只使用链接模块。

Linking.canOpenURL('comgooglemaps://?center=40.765819,-73.975866')
.then((canOpen) => {
if (canOpen) { console.log('open google maps'); } else { console.log('open apple maps'); }
});

关于react-native - 检查谷歌地图应用程序是否安装在 react-native iOS 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47652375/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com