重现:hello uni-app 接口-位置-选择位置
之前开发的项目地图初始化无法定位,代码如下:
onLoad() {
uni.getLocation({
type: 'gcj02',
success: function (res) {
//console.log(JSON.stringify(res))
// console.log('当前位置的经度:' + res.longitude);
// console.log('当前位置的纬度:' + res.latitude);
this.latitude = res.latitude;
this.longitude = res.longitude;
}
});
this.mapContext = uni.createMapContext('map');
this.mapContext.moveToLocation();
}
有没有同样问题的兄弟帮忙解答一下,谢谢