<view>
<view>{{location}}</view>
</view>
</template>
<script>
export default {
onReady() {
this.showgps();
},
data(){
return{
location:''
}
},
methods:{
showgps(){
uni.getLocation({
// 默认为 wgs84 返回 gps 坐标,
// gcj02 返回国测局坐标,可用于 uni.openLocation 的坐标
type: 'wgs84',
geocode: true,
success: (data) => {
if (data.address){
this.location = data;
}
},
fail: (err) => {
console.log(err)
// this.$api.msg('获取定位失败');
}
});
}
}
}
</script>
这段代码就可以获取当前手机所在的地理位置和GPS相关信息,需要在手机上才能看到效果。