我正在使用RN 0.20 for iOS.我想创建一个链接,如果您单击该链接,它将重定向到手机中可用的地图应用程序及其坐标.这就是我使用Linking组件所做的.
redirectToMap() { Linking.canOpenURL('geo:37.484847,-122.148386').then(supported => { if (supported) { Linking.openURL('geo:37.484847,-122.148386'); } else { console.log('Don\'t know how to go'); } }).catch(err => console.error('An error occurred',err)); }
但它不断给我’不知道怎么去’.但是,我从https://facebook.github.io/react-native/docs/linking.html的文档中看到,使用geo:链接到地图是可行的.
解决方法
使用正确的URL方案
看看iOS的official documentation.
要打开地图,请使用建议的方案:
http://maps.apple.com/?ll=<lat>,<long>