javascript技巧

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript技巧 > uniApp获取经纬度

uniApp获取当前位置经纬度的示例代码

作者:代码真的养发

这篇文章主要介绍了uniApp获取当前位置经纬度,以下是使用uni.getLocation获取当前位置的示例代码,需要的朋友可以参考下

以下是使用uni.getLocation获取当前位置的示例代码:

1.调用uni.getLocation方法获取当前位置信息

uni.getLocation({
  type: 'wgs84', // 坐标类型,默认为wgs84,可选的值为gcj02和bd09ll
  success: res => {
    // 获取成功,经度和纬度在res.longitude和res.latitude中
    console.log('longitude:', res.longitude);
    console.log('latitude:', res.latitude);
  },
  fail: err => {
    // 获取失败,err为错误信息
    console.log('getLocation err:', err);
  }
});

2.如果需要连续获取位置信息,可以使用uni.startLocationUpdate方法

uni.startLocationUpdate({
  accuracy: 'high', // 定位精度,可选值为low、medium、high,默认为high
  autoStop: false, // 是否自动停止位置更新,默认为false
  success: res => {
    console.log('longitude:', res.longitude);
    console.log('latitude:', res.latitude);
  },
  fail: err => {
    console.log('startLocationUpdate err:', err);
  }
});

3.需要注意的是,获取位置信息需要用户授权,如果没有授权,则无法获取位置信息。如果需要获取位置信息,请在manifest.json文件中添加以下权限:

"permissions": {
  "location": {
    "desc": "您的位置信息将用于获取您周边的优惠信息"
  }
}

uni-app获取地理位置

在uni-app中,可以通过uni.getLocation()方法获取地理位置。具体步骤如下:

1.在uni-app项目中的manifest.json文件中,添加需要获取地理位置的权限:

{
  "mp-weixin": {
    "appid": "...",
    "permission": {
      "scope.userLocation": {
        "desc": "你的位置信息将用于小程序定位"
      }
    }
  }
}

1.在页面中调用uni.getLocation()方法:

uni.getLocation({
    type: 'gcj02', // 坐标系类型
    success: function (res) {
        var latitude = res.latitude; // 维度
        var longitude = res.longitude; // 经度
        console.log('经度:' + longitude + ',纬度:' + latitude);
    },
    fail: function (res) {
        console.log('获取定位失败:' + res.errMsg);
    }
});

其中,type参数表示坐标系类型,可选值为:wgs84、gcj02、bd09ll,默认值为wgs84。其中,gcj02为国测局坐标系,bd09ll为百度地图坐标系,一般使用gcj02即可。

调用uni.getLocation()方法后,会弹出授权框,请用户授权获取地理位置。成功获取位置后,会返回经纬度信息,开发者可以根据返回的经纬度信息进行相应的处理。

到此这篇关于uniApp获取当前位置经纬度的文章就介绍到这了,更多相关uniApp获取经纬度内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文