wx.getLocation调用没有反应,但是在没有APPID情况下可以正常使用
本来想通过调用wx.getLocation实现获取当前位置并用图标显示出来,但是调用根本没有任何反应,图标也不显示,之后重新建立了一个项目,在没有APPID的情况下却可以正常使用,请问是怎么回事,下面是相关代码片段的链接:wechatide://minicode/1NIy8BmR6YZk
附上一段相关代码:
onLoad: function () {
var _this = this;
wx.getLocation({
type: 'wgs84', // 默认为 wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标
success: function (res) {
console.log(res)
_this.setData({
latitude: res.latitude,
longitude: res.longitude,
markers: [{
id: "1",
latitude: res.latitude,
longitude: res.longitude,
width: 50,
height: 50,
iconPath: "/img/map.png"
}]
})
}