当前位置:   article > 正文

使用uni.chooseLocation获取并选择附近的地址

uni.chooselocation
  1. <view class="ReleaseItem">
  2. <view class="ReleaseName">地址</view>
  3. <view class="salaryBox" @click="choiceAddress">
  4. <view class="salary">{
  5. {region?region:"请选择"}}</view>
  6. <u-icon name="arrow-right" color="#999"></u-icon>
  7. </view>
  8. </view>
  1. <script>
  2. export default{
  3. data(){
  4. return{
  5. region:"",
  6. latitude:"",
  7. longitude:"",
  8. }
  9. },
  10. methods:{
  11. choiceAddress(){
  12. let _this = this;
  13. uni.chooseLocation({
  14. success(res) {
  15. console.log(res)
  16. _this.region = res.address;
  17. _this.latitude = res.latitude;
  18. _this.longitude = res.longitude;
  19. //后端接口,解析地址
  20. _this.$u
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/828820
推荐阅读
相关标签
  

闽ICP备14008679号