问题模块 框架类型 问题类型 终端类型 操作系统 微信版本 基础库版本
框架 微信小程序 Bug 客户端 6.6.5 1.9.9
- 当前 Bug 的表现(可附上截图)
地图和定位可以在电脑上正常显示,但是在手机上无法获得准确定位
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
/**
* 页面的初始数据
*/
data: {
latitude: '',
longitude: '',
Height: ''
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
var _this = this;
if (app.globalData.latitude && app.globalData.longitude) {
this.setData({
latitude: app.globalData.latitude, // 经度
longitude: app.globalData.longitude, // 纬度
markers: [{
id: 1,
latitude: app.globalData.latitude, // 经度
longitude: app.globalData.longitude, // 纬度
width: 20,
height: 30,
iconPath: '/img/location.png'
}]
})
}
wx.getSystemInfo({
success: function (res) {
_this.setData({
view: {
Height: res.windowHeight
}
})
}
})
},
微信小程序开发问题解答
微信小程序开发者回答:
麻烦给个相关的代码片段(https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/minicode.html),我们定位下问题
本文网址:http://www.91bianli.com/weixinxiaochengxu/48811.html