文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

uniapp小程序如何获取位置经纬度信息

2023-07-04 13:26

关注

本篇内容主要讲解“uniapp小程序如何获取位置经纬度信息”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“uniapp小程序如何获取位置经纬度信息”吧!

一、相关代码

// 定位授权    getLocation() {      let that = this;      // 1、判断手机定位服务【GPS】 是否授权      uni.getSystemInfo({        success(res) {          console.log("判断手机定位服务是否授权:", res);          let locationEnabled = res.locationEnabled; //判断手机定位服务是否开启          let locationAuthorized = res.locationAuthorized; //判断定位服务是否允许微信授权          if (locationEnabled == false || locationAuthorized == false) {            //手机定位服务(GPS)未授权            uni.showToast({              title: "请打开手机GPS",              icon: "none",            });          } else {            //手机定位服务(GPS)已授权            // 2、判断微信小程序是否授权位置信息            // 微信小程序已授权位置信息            uni.authorize({              //授权请求窗口              scope: "scope.userLocation", //授权的类型              success: (res) => {                that.fnGetlocation();              },              fail: (err) => {                err = err["errMsg"];                uni                  .showModal({                    content: "需要授权位置信息",                    confirmText: "确认授权",                  })                  .then((res) => {                    console.log(res);                    if (res[1]["confirm"]) {                      uni.openSetting({                        success: (res) => {                          if (res.authSetting["scope.userLocation"]) {                            // 授权成功                            uni.showToast({                              title: "授权成功",                              icon: "none",                            });                            that.fnGetlocation();                          } else {                            // 未授权                            uni.showToast({                              title: "授权失败,请重新授权",                              icon: "none",                            });                            uni.showModal({                              title: "授权",                              content:                                "获取授权" +                                authouName +                                "失败,是否前往授权设置?",                              success: function (result) {                                if (result.confirm) {                                  uni.openSetting();                                }                              },                              fail: function () {                                uni.showToast({                                  title: "系统错误!",                                  icon: "none",                                });                              },                            });                          }                        },                      });                    }                    if (res[1]["cancel"]) {                      // 取消授权                      uni.showToast({                        title: "你拒绝了授权,无法获得周边信息",                        icon: "none",                      });                    }                  });              },              complete(res) {                // console.log('授权弹框', res);                if (res.errMsg == "authorize:ok") {                  that.fnGetlocation();                } else {                  uni.showModal({                    title: "授权",                    content:                      "获取授权" + authouName + "失败,是否前往授权设置?",                    success: function (result) {                      if (result.confirm) {                        uni.openSetting();                      }                    },                    fail: function () {                      uni.showToast({                        title: "系统错误!",                        icon: "none",                      });                    },                  });                }              },            });          }        },      });    },
// 定位获取    fnGetlocation() {      let that = this;      uni.getLocation({        type: "wgs84", //默认为 wgs84 返回 gps 坐标        geocode: "true",        isHighAccuracy: "true",        accuracy: "best", // 精度值为20m        success: function (res) {          console.log("定位获取:", res);          let platform = uni.getSystemInfoSync().platform;          if (platform == "ios") {          //toFixed() 方法可把 Number 四舍五入为指定小数位数的数字。            that.bindList.long = res.longitude.toFixed(6);            that.bindList.lat = res.latitude.toFixed(6);          } else {            that.bindList.long = res.longitude;            that.bindList.lat = res.latitude;          }          that.bindList.longlat =            "经度" +            that.changeTwoDecimal_f(that.bindList.long) +            "/" +            "纬度" +            that.changeTwoDecimal_f(that.bindList.lat);          that.getAreaCode(res.latitude, res.longitude);        },        fail(err) {          if (            err.errMsg ===            "getLocation:fail 频繁调用会增加电量损耗,可考虑使用 wx.onLocationChange 监听地理位置变化"          ) {            uni.showToast({              title: "请勿频繁定位",              icon: "none",            });          }          if (err.errMsg === "getLocation:fail auth deny") {            // 未授权            uni.showToast({              title: "无法定位,请重新获取位置信息",              icon: "none",            });            authDenyCb && authDenyCb();            that.isLocated = false;          }          if (            err.errMsg ===            "getLocation:fail:ERROR_NOCELL&WIFI_LOCATIONSWITCHOFF"          ) {            uni.showModal({              content: "请开启手机定位服务",              showCancel: false,            });          }        },      });    },
// getAreaCode通过经纬度(wgs84)坐标获取区域码    getAreaCode(latitude, longitude) {      this.$refs.uForm.resetFields();      var that = this;      that.$u.api        .getAreaCode({          latitude: latitude,          longitude: longitude,        })        .then((res) => {          if (res.code == 100000000) {            console.log("通过经纬度坐标获取区域码:", res);            // console.log(res, 'areaCode');            that.bindList.areaCode = res.data.areaCode;            that.bindList.specificAddress = res.data.detailLocation;            that.bindList.address = res.data.areaLocation;          } else {            uni.showToast({ title: res.msg, icon: "none" });          }        })        .catch((err) => {          this.loadState = "加载失败err";          console.log("getDevList_err:", err); //--------------------        });    },

二、相关的数据返回

uniapp小程序如何获取位置经纬度信息

到此,相信大家对“uniapp小程序如何获取位置经纬度信息”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯