其他分享
首页 > 其他分享> > uniApp获取用户位置信息两种方法

uniApp获取用户位置信息两种方法

作者:互联网

1、使用uni.chooseLocation获取用户信息

               uni.chooseLocation({
					success: (res) => {
						console.log('位置名称:' + res.name);
						console.log('详细地址:' + res.address);
						console.log('纬度:' + res.latitude);
						console.log('经度:' + res.longitude);
					}
				});

2、运用高德获取用户信息

高德微信开发平台

高德微信的小程序key

下载sdk  sdk下载 

 页面使用

引用sdk

import amap from '@/common/js/amap-wx.130.js';

 用 this.amapPlugin.getRegeo调用位置信息,同时也可以调取到天气信息等

import amap from '../../common/amap-wx.js';  
export default {  
    data() {  
        return {  
            amapPlugin: null,  
            key: '这里填写高德开放平台上申请的key'  
        }  
    },  
    onl oad() {  
        this.amapPlugin = new amap.AMapWX({  
            key: this.key  
        });  
       this.chooseSpot()
    }  
	methods: {
      chooseSpot(){
           this.amapPlugin.getRegeo({
					success: (data) => {
					
					}
				});

     }
    }
}

 

标签:uniApp,console,log,res,用户,获取,amapPlugin,amap,key
来源: https://blog.csdn.net/weixin_43288858/article/details/122454227