uni 微信小程序 使用腾讯地图

腾讯地图注册账号

设置key

uni 微信小程序 使用腾讯地图_第1张图片

勾选微信小程序 填入appid 勾选web和白名单选项

uni 微信小程序 使用腾讯地图_第2张图片

下载微信小程序的sdk

官方文档: link.

// 腾讯地图Api
				const qqmapsdk = new QQMapWX({
					key: "" //key值
				});
				// 授权
				uni.authorize({
					scope: "scope.userLocation",
					success: () => {
						uni.getLocation({
							type: "gcj02", //  wgs84: 返回GPS坐标,gcj02: 返回国测局坐标
							success: res => {
								const {
									latitude,
									longitude
								} = res;
								const location = {
									latitude,
									longitude
								};
							
								qqmapsdk.reverseGeocoder({
									location,
									success: res => {
										res //返回地址信息
									}
								});
								
						});
					},
					fail: () => console.log("请授权获取你的位置,否则部分功能将无法使用!"),
				});

你可能感兴趣的:(uni,app)