其他分享
首页 > 其他分享> > uniapp使用逆地理编码

uniapp使用逆地理编码

作者:互联网

// 通过经纬度逆地址解析
            getAddress(longitude,latitude){
                uni.request({
                    url: 'https://restapi.amap.com/v3/geocode/regeo', //仅为示例,并非真实接口地址。
                    data: {
                                output: 'json',
                                location: `${longitude},${latitude}`,
                                key: 你的key,
                                extensions: 'base',
                                batch: false
                            },
                        success: (res) => {
                        console.log("通过经纬度逆地址解析",res);
                    }
                });
            },

key需要申请web格式的

 

标签:uniapp,经纬度,编码,res,longitude,地址,地理,key,latitude
来源: https://www.cnblogs.com/fhysy/p/15992812.html