美文网首页
新版本react-native中使用定位遇到坑

新版本react-native中使用定位遇到坑

作者: wingedsnake | 来源:发表于2020-04-23 15:46 被阅读0次
yarn add @react-native-community/geolocation --save 或 npm install @react-native-community/geolocation --save
import geolocation from "@react-native-community/geolocation"


// 然后使用
navigator.geolocation = geolocation;
navigator.geolocation.getCurrentPosition((pos) => {
    let coords = pos.coords;
    // 打印经度-维度
    alert(coords.longitude + "," + coords.latitude);
})

相关文章

网友评论

      本文标题:新版本react-native中使用定位遇到坑

      本文链接:https://www.haomeiwen.com/subject/oreaihtx.html