黄沙百战穿金甲,不破楼兰终不还。这篇文章主要讲述uni-app获取当前位置相关的知识,希望能为你提供帮助。
uniapp获取当前城市:
官方api:uni.getLocation()
获取当前的地理位置、速度。 在微信小程序中,当用户离开应用后,此接口无法调用,除非申请后台持续定位权限;当用户点击“
显示在聊天顶部”
时,此接口可继续调用。
例:
uni.getLocation({ type: ‘wgs84‘, success: function (res) { console.log(‘当前位置的经度:‘ + res.longitude); console.log(‘当前位置的纬度:‘ + res.latitude); } });
【uni-app获取当前位置】
成功回调函数中会返回当前经纬度等信息
如果想获取当前省市区信息,可以设置参数 geocode 为 true,该属性仅APP端支持
例:
uni.getLocation({ type: ‘wgs84‘,
geocode:true, success: function (res) { console.log(res.address); } });
APP端还可使用 plus.geolocation 获取中文地址
plus.geolocation.getCurrentPosition( function(position){ console.log( position.addresses); }, function ( e ) { console.log( e.message ); },{geocode:true});
其他端可使用地图开放平台获取SDK:
https://ask.dcloud.net.cn/article/35070
推荐阅读
- JAVA错误提示:The operation is not applicable to the current selection.Select a field which is not declar
- Android中UI线程与worker线程的通信方法
- 360免费wifi app不限时长登陆cmcc你值得拥有!
- Android binder流程简图
- androidstudio的安装与抓log
- idea~创建maven webapp项目
- Android 程序分析环境搭建-开发环境搭建
- android细节之android.intent.category.DEFAULT的使用
- 架构——android架构演进概述