收藏
回答

安卓手机定位获取不到

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.getLocation 微信安卓客户端 0 0

最近好多安卓用户 拿不到当前定位,左上角的定位 一直在闪,但是一直拿不到,删掉小程序重新进入还时不行

setTimeout(() => {
			wx.getLocation({
				type: 'gcj02',
				isHighAccuracy: true,
				success: (res) => {
					covers.value = [{
						id: 1,
						latitude: res.latitude,
						longitude: res.longitude,
						width: 34,
						height: 34,
						iconPath: '../../static/images/marker1.png'
					}]
					currentLongitude.value = res.longitude
					currentLatitude.value = res.latitude
					uni.hideLoading()
					getDealerList()
				},
				fail: (err) => {
					uni.hideLoading()
					uni.showModal({
						title: '提示',
						content: `${err.errMsg || '定位失败'}`,
						showCancel: false,
						confirmText: '好的'
					})
				}
			})
		}, 150)
回答关注问题邀请回答
收藏

1 个回答

  • Demons
    Demons
    06-19

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    06-19
    有用
    回复
登录 后发表内容