翼度科技»论坛 编程开发 JavaScript 查看内容

uniapp小程序项目获取位置经纬度信息

4

主题

4

帖子

12

积分

新手上路

Rank: 1

积分
12
前言
  1. 提示:这里可以添加本文要记录的大概内容:
复制代码
在实际项目中很多时候我们需要获取设备的位置信息,去展示给客户,或者以位置信息为参数,继续向服务器获取一些数据。接下来以uni-app小程序项目为例来介绍获取位置信息的思路
  1. 提示:以下是本篇文章正文内容,下面案例可供参考
复制代码

一、相关代码


  • 判断手机定位是否授权
  1. // 定位授权
  2.     getLocation() {
  3.       let that = this;
  4.       // 1、判断手机定位服务【GPS】 是否授权
  5.       uni.getSystemInfo({
  6.         success(res) {
  7.           console.log("判断手机定位服务是否授权:", res);
  8.           let locationEnabled = res.locationEnabled; //判断手机定位服务是否开启
  9.           let locationAuthorized = res.locationAuthorized; //判断定位服务是否允许微信授权
  10.           if (locationEnabled == false || locationAuthorized == false) {
  11.             //手机定位服务(GPS)未授权
  12.             uni.showToast({
  13.               title: "请打开手机GPS",
  14.               icon: "none",
  15.             });
  16.           } else {
  17.             //手机定位服务(GPS)已授权
  18.             // 2、判断微信小程序是否授权位置信息
  19.             // 微信小程序已授权位置信息
  20.             uni.authorize({
  21.               //授权请求窗口
  22.               scope: "scope.userLocation", //授权的类型
  23.               success: (res) => {
  24.                 that.fnGetlocation();
  25.               },
  26.               fail: (err) => {
  27.                 err = err["errMsg"];
  28.                 uni
  29.                   .showModal({
  30.                     content: "需要授权位置信息",
  31.                     confirmText: "确认授权",
  32.                   })
  33.                   .then((res) => {
  34.                     console.log(res);
  35.                     if (res[1]["confirm"]) {
  36.                       uni.openSetting({
  37.                         success: (res) => {
  38.                           if (res.authSetting["scope.userLocation"]) {
  39.                             // 授权成功
  40.                             uni.showToast({
  41.                               title: "授权成功",
  42.                               icon: "none",
  43.                             });
  44.                             that.fnGetlocation();
  45.                           } else {
  46.                             // 未授权
  47.                             uni.showToast({
  48.                               title: "授权失败,请重新授权",
  49.                               icon: "none",
  50.                             });
  51.                             uni.showModal({
  52.                               title: "授权",
  53.                               content:
  54.                                 "获取授权" +
  55.                                 authouName +
  56.                                 "失败,是否前往授权设置?",
  57.                               success: function (result) {
  58.                                 if (result.confirm) {
  59.                                   uni.openSetting();
  60.                                 }
  61.                               },
  62.                               fail: function () {
  63.                                 uni.showToast({
  64.                                   title: "系统错误!",
  65.                                   icon: "none",
  66.                                 });
  67.                               },
  68.                             });
  69.                           }
  70.                         },
  71.                       });
  72.                     }
  73.                     if (res[1]["cancel"]) {
  74.                       // 取消授权
  75.                       uni.showToast({
  76.                         title: "你拒绝了授权,无法获得周边信息",
  77.                         icon: "none",
  78.                       });
  79.                     }
  80.                   });
  81.               },
  82.               complete(res) {
  83.                 // console.log('授权弹框', res);
  84.                 if (res.errMsg == "authorize:ok") {
  85.                   that.fnGetlocation();
  86.                 } else {
  87.                   uni.showModal({
  88.                     title: "授权",
  89.                     content:
  90.                       "获取授权" + authouName + "失败,是否前往授权设置?",
  91.                     success: function (result) {
  92.                       if (result.confirm) {
  93.                         uni.openSetting();
  94.                       }
  95.                     },
  96.                     fail: function () {
  97.                       uni.showToast({
  98.                         title: "系统错误!",
  99.                         icon: "none",
  100.                       });
  101.                     },
  102.                   });
  103.                 }
  104.               },
  105.             });
  106.           }
  107.         },
  108.       });
  109.     },
复制代码

  • 判断小程序是否授权位置信息 (代码在上方)
  • 定位获取
  1. // 定位获取
  2.     fnGetlocation() {
  3.       let that = this;
  4.       uni.getLocation({
  5.         type: "wgs84", //默认为 wgs84 返回 gps 坐标
  6.         geocode: "true",
  7.         isHighAccuracy: "true",
  8.         accuracy: "best", // 精度值为20m
  9.         success: function (res) {
  10.           console.log("定位获取:", res);
  11.           let platform = uni.getSystemInfoSync().platform;
  12.           if (platform == "ios") {
  13.                   //toFixed() 方法可把 Number 四舍五入为指定小数位数的数字。
  14.             that.bindList.long = res.longitude.toFixed(6);
  15.             that.bindList.lat = res.latitude.toFixed(6);
  16.           } else {
  17.             that.bindList.long = res.longitude;
  18.             that.bindList.lat = res.latitude;
  19.           }
  20.           that.bindList.longlat =
  21.             "经度" +
  22.             that.changeTwoDecimal_f(that.bindList.long) +
  23.             "/" +
  24.             "纬度" +
  25.             that.changeTwoDecimal_f(that.bindList.lat);
  26.           that.getAreaCode(res.latitude, res.longitude);
  27.         },
  28.         fail(err) {
  29.           if (
  30.             err.errMsg ===
  31.             "getLocation:fail 频繁调用会增加电量损耗,可考虑使用 wx.onLocationChange 监听地理位置变化"
  32.           ) {
  33.             uni.showToast({
  34.               title: "请勿频繁定位",
  35.               icon: "none",
  36.             });
  37.           }
  38.           if (err.errMsg === "getLocation:fail auth deny") {
  39.             // 未授权
  40.             uni.showToast({
  41.               title: "无法定位,请重新获取位置信息",
  42.               icon: "none",
  43.             });
  44.             authDenyCb && authDenyCb();
  45.             that.isLocated = false;
  46.           }
  47.           if (
  48.             err.errMsg ===
  49.             "getLocation:fail:ERROR_NOCELL&WIFI_LOCATIONSWITCHOFF"
  50.           ) {
  51.             uni.showModal({
  52.               content: "请开启手机定位服务",
  53.               showCancel: false,
  54.             });
  55.           }
  56.         },
  57.       });
  58.     },
复制代码

  • 通过经纬度坐标获取区域码
  1. // getAreaCode通过经纬度(wgs84)坐标获取区域码
  2.     getAreaCode(latitude, longitude) {
  3.       this.$refs.uForm.resetFields();
  4.       var that = this;
  5.       that.$u.api
  6.         .getAreaCode({
  7.           latitude: latitude,
  8.           longitude: longitude,
  9.         })
  10.         .then((res) => {
  11.           if (res.code == 100000000) {
  12.             console.log("通过经纬度坐标获取区域码:", res);
  13.             // console.log(res, 'areaCode');
  14.             that.bindList.areaCode = res.data.areaCode;
  15.             that.bindList.specificAddress = res.data.detailLocation;
  16.             that.bindList.address = res.data.areaLocation;
  17.           } else {
  18.             uni.showToast({ title: res.msg, icon: "none" });
  19.           }
  20.         })
  21.         .catch((err) => {
  22.           this.loadState = "加载失败err";
  23.           console.log("getDevList_err:", err); //--------------------
  24.         });
  25.     },
复制代码
二、相关的数据返回



三、效果展示




最后

提示:这里对文章进行总结:
以上就是获取位置信息的大概步骤思路:

  • 判断手机定位服务是否授权(uni.getSystemInfo)
  • 判断小程序是否授权位置信息(uni.authorize)
  • 定位获取(uni.getLocation)
  • 通过经纬度坐标获取区域码,这是通过以经纬度为参数获取后端的数据
到此这篇关于uni-app如何获取位置信息(经纬度)的文章就介绍到这了,更多相关uni-app获取位置内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/article/266671.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具