您的当前位置:首页正文

微信小程序之获取定位数据以及通过坐标获取详细地址数据

2024-11-29 来源:个人技术集锦


 微信小程序文章推荐

一、逻辑处理代码

1:获取定位数据

对于微信小程序的api文件只能获取坐标数据,代码如下:

 wx.getLocation({

            success: res => {

                console.log("位置信息:" + res.latitude);

                this.setData({

                    myLoacltion: res,

                    startPoint: {

                        name: "我的位置",

                        latitude: res.latitude,

                        longitude: res.longitude

                    },

                })  

            },

        })

2:通过坐标获取地址数据

   sendRequest: function (qqMapApi) {

        const that = this

        wx.request({

            url: 'https://apis.map.qq.com/ws/geocoder/v1/' + "?location=" + res.latitude + ',' +

                    res.longitude + "&key=您的key" &get_poi=1"

,

            header: {

                'Content-Type': 'application/json'

            },

            data: {},

            method: 'GET',

            success: (res) => {

                console.log(res.data)

                that.setData({

                    myaddress: res.data.result.address,//获取的具体的坐标数据

                });

            }

        })

    },

三、留个脚印吧

大家要是感觉此篇文章有意义;那就给个关注、点赞,收藏吧;

?也可以关注文档末尾公众号?

显示全文