当前位置:   article > 正文

uniapp开发小程序-地图选择定位(报错:wx.chooseLocation need to be declared in the requiredPrivateInfos field in )

wx.chooselocation need to be declared in the requiredprivateinfos field in a

一、问题

点击定位时,报一下错误提示:wx.chooseLocation need to be declared in the requiredPrivateInfos field in app.json/ext.json

在这里插入图片描述

二、解决方式

2.1第一步:
打开manifest.json选择源码视图,找到mp-weixin节点,添加requiredPrivateInfos的配置,源码如下图:

"requiredPrivateInfos": ["getLocation", "chooseLocation"],  //使用地图
  • 1

在这里插入图片描述
2.2第二步:
搜索 微信公众平台 进入后,点击开发下面的开发管理,点击接口设置,开通所用到的api就行了,如下图:
在这里插入图片描述

三、具体效果以及具体代码

3.1效果
在这里插入图片描述

3.2代码

<template>
	<view class="">
		<view class="dingwei"  @click="getMapLocation()">
			<image src="../../static/images/icon_dw@2x(1).png"></image>定位
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				addressData: {
					longitude: '118.06637', //经度
					latitude: '37.665928', //纬度
					details: '', //详细地址
				},
			}
		},
		
	
		methods: {
			//定位选择详细地址
			getMapLocation() {
				uni.chooseLocation({
					success: res => {
						console.log(res);
						this.addressData.details = res.name;
						this.addressData.longitude = res.longitude;
						this.addressData.latitude = res.latitude;
					},
					fail: () => {
						// 如果用uni.chooseLocation没有获取到地理位置,则需要获取当前的授权信息,判断是否有地理授权信息
						uni.getSetting({
							success: res => {
								console.log(res);
								var status = res.authSetting;
								if (!status['scope.userLocation']) {
									// 如果授权信息中没有地理位置的授权,则需要弹窗提示用户需要授权地理信息
									uni.showModal({
										title: '是否授权当前位置',
										content: '需要获取您的地理位置,请确认授权,否则地图功能将无法使用',
										success: tip => {
											if (tip.confirm) {
												// 如果用户同意授权地理信息,则打开授权设置页面,判断用户的操作
												uni.openSetting({
													success: data => {
														// 如果用户授权了地理信息在,则提示授权成功
														if (data.authSetting['scope.userLocation'] === true) {
															uni.showToast({
																title: '授权成功',
																icon: 'success',
																duration: 1000
															});
															// 授权成功后,然后再次chooseLocation获取信息
															uni.chooseLocation({
																success: res => {
																	console.log('详细地址',res);
																	this.addressData.details =res.name;
																	this.addressData.longitude =res.longitude;
																	this.addressData.latitude =res.latitude;
																}
															});
														} else {
															uni.showToast({
																title: '授权失败',
																icon: 'none',
																duration: 1000
															});
														}
													}
												});
											}
										}
									});
								}
							},
							fail: res => {
								uni.showToast({
									title: '调用授权窗口失败',
									icon: 'none',
									duration: 1000
								});
							}
						});
					}
				});
			},

		}
	}
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92

到此完成啦!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/828835
推荐阅读
相关标签
  

闽ICP备14008679号