// #ifdef H5
uni.chooseLocation({
success: function(res) {
console.log(1)
console.log('位置名称:' + res.name);
console.log('详细地址:' + res.address);
console.log('纬度:' + res.latitude);
console.log('经度:' + res.longitude);
that.lat = res.latitude;
that.lng = res.longitude;
that.districts = res.address;
that.address = res.name
let reg = /.+?(省|市|自治区|自治州|镇|县|区)/g;
let arr = that.districts.match(reg);
if(arr) {
that.province = arr[0];
that.city = arr[1];
that.district = arr[2];
}
console.log(that.districts)
},
});
// #endif