微信小程序调用微信地图
2020-01-15 本文已影响0人
加冰宝贝
wx.startLocationUpdateBackground();
wx.chooseLocation({
success(res) {
// console.log(res);
that.Setdata('address', res.address + res.name);
that.Setdata('lat', res.latitude);
that.Setdata('lng', res.longitude);
}
});