微信小程序获取经纬度坐标及地址,wgs84转腾讯坐标逆解析

作者 : admin 本文共1325个字,预计阅读时间需要4分钟 发布时间: 2024-03-5 共1人阅读

前提:

        微信小程序获取经纬度坐标及地址,需要到微信公众平台获取两个地址接口,wx.getFuzzyLocation 接口权限或 wx.getLocation接口权限。

 1. 登录小程序后台 微信公众平台     开发=>开发管理=>接口设置 

微信小程序获取经纬度坐标及地址,wgs84转腾讯坐标逆解析插图

 🍓微信原生开发需配置

 app.json中配置下
{

    "permission": {
        "scope.userLocation": {
          "desc": "授权定位有助于提高蓝牙水表的连接成功率"
        }
    },
    "requiredPrivateInfos": [
        "getLocation"
    ]
}

 🍓uniapp开发需配置

 uniapp开发的在在manifest.json文件中配置小程序的位置信息

/* 小程序特有相关 */
	    "mp-weixin" : {
	        "appid" : "xxxxxxxxxxxxxxx",
	        "setting" : {
	            "urlCheck" : false
	        },
	        "usingComponents" : true,
	        "permission" : {
                "scope.userLocation":{
			        "desc":"获得用户当前位置"
		        },
	            "scope.userFuzzyLocation":{
	            	"desc":"位置信息效果展示"
	            }
	        },
	        "requiredPrivateInfos" : [ "getLocation" , "getFuzzyLocation" ]
	    },

 配置manifest.json后还需要配置page.json 

"permission":{
		"scope.userLocation":{
			"desc":"获得用户当前位置"
		},
		"scope.userFuzzyLocation":{
			"desc":"获得用户当前位置"
		}
	},

注册腾讯地图,获取key 

https://lbs.qq.com/dev/console/key/manage

微信小程序获取经纬度坐标及地址,wgs84转腾讯坐标逆解析插图(1) 

微信小程序获取经纬度坐标及地址,wgs84转腾讯坐标逆解析插图(2) 

  下载SDK,并引入到项目中

 微信小程序获取经纬度坐标及地址,wgs84转腾讯坐标逆解析插图(3)

🍓wgs84转腾讯坐标逆解析

微信小程序获取经纬度坐标及地址,wgs84转腾讯坐标逆解析插图(4) 

  如果只需要获取经纬度,看到这里就行了

 wx.getLocation接口 

getLocation(){
	uni.getLocation({
		type: 'wgs84',
		success: res => {
			console.log('当前位置的经度:' + res.longitude);
			console.log('当前位置的纬度:' + res.latitude);
			this.longitude = res.longitude
			this.latitude = res.latitude
		},
	})			    
},

wx.getFuzzyLocation接口

getLocation() {	
    uni.authorize({//授权
		scope: 'scope.userLocation',
		success(){
			uni.getFuzzyLocation({
				success: function(res) {
								
					this.longitude = res.longitude
					this.latitude = res.latitude
					console.log(res.longitude)
					console.log(res.latitude)
				}
            })
        }
    })
}

🍓获取经纬度及地址


	
			
	

 

 

🍓镇楼图 

 微信小程序获取经纬度坐标及地址,wgs84转腾讯坐标逆解析插图(5)

🍓结束语🏆

结束,分享给各位,即拿即用,啊,舒服~

有帮到的话记得点赞收藏哈~~ 

本站无任何商业行为
个人在线分享 » 微信小程序获取经纬度坐标及地址,wgs84转腾讯坐标逆解析
E-->