uniApp获取当前位置经纬度的示例代码
以下是使用uni.getLocation获取当前位置的示例代码:
1.调用uni.getLocation方法获取当前位置信息
uni.getLocation({ type: 'wgs84', // 坐标类型,默认为wgs84,可选的值为gcj02和bd09ll success: res => { // 获取成功,经度和纬度在res.longitude和res.latitude中 console.log('longitude:', res.longitude); console.log('latitude:', res.latitude); }, fail: err => { // 获取失败,err为错误信息 console.log('getLocation err:', err); } });
2.如果需要连续获取位置信息,可以使用uni.startLocationUpdate方法
uni.startLocationUpdate({ accuracy: 'high', // 定位精度,可选值为low、medium、high,默认为high autoStop: false, // 是否自动停止位置更新,默认为false success: res => { console.log('longitude:', res.longitude); console.log('latitude:', res.latitude); }, fail: err => { console.log('startLocationUpdate err:', err); } });
3.需要注意的是,获取位置信息需要用户授权,如果没有授权,则无法获取位置信息。如果需要获取位置信息,请在manifest.json文件中添加以下权限:
"permissions": { "location": { "desc": "您的位置信息将用于获取您周边的优惠信息" } }
uni-app获取地理位置
在uni-app中,可以通过uni.getLocation()方法获取地理位置。具体步骤如下:
1.在uni-app项目中的manifest.json文件中,添加需要获取地理位置的权限:
{ "mp-weixin": { "appid": "...", "permission": { "scope.userLocation": { "desc": "你的位置信息将用于小程序定位" } } } }
1.在页面中调用uni.getLocation()方法:
uni.getLocation({ type: 'gcj02', // 坐标系类型 success: function (res) { var latitude = res.latitude; // 维度 var longitude = res.longitude; // 经度 console.log('经度:' + longitude + ',纬度:' + latitude); }, fail: function (res) { console.log('获取定位失败:' + res.errMsg); } });
其中,type参数表示坐标系类型,可选值为:wgs84、gcj02、bd09ll,默认值为wgs84。其中,gcj02为国测局坐标系,bd09ll为百度地图坐标系,一般使用gcj02即可。
调用uni.getLocation()方法后,会弹出授权框,请用户授权获取地理位置。成功获取位置后,会返回经纬度信息,开发者可以根据返回的经纬度信息进行相应的处理。
到此这篇关于uniApp获取当前位置经纬度的文章就介绍到这了,更多相关uniApp获取经纬度内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
JavaScript 实现自己的安卓手机自动化工具脚本(推荐)
这篇文章主要介绍了 JavaScript 实现自己的安卓手机自动化工具脚本,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-05-05浅谈JS for循环中使用break和continue的区别
这篇文章主要介绍了浅谈for循环中使用break和continue的区别,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-07-07
最新评论