wx.chooseLocation,搜索地址确认完成后返回还是当前位置得值
wx.chooseLocation,搜索地址确认完成后返回还是当前位置得值。
如当前位置是A。选择地址B后,还是显示的A。
代码如下:
wx.chooseLocation({
success (res) {
that.city = res.name;
that.latitude = res.latitude;
that.longitude = res.longitude;
}
})