swan.chooseLocation

解释: 打开地图选择位置。需要用户授权 scope.userLocation。使用该 API 需通过获取用户权限设置swan.chooseLocation - 图1申请授权后方可对用户发起授权申请,可在需授权接口列表swan.chooseLocation - 图2中查看相关错误码信息。

方法参数

Object object

object参数说明

属性名类型必填默认值说明
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success 返回参数说明

参数说明
name位置名称
address详细地址
latitude纬度,浮点数,范围为-90~90,负数表示南纬。使用 gcj02 国测局坐标系,查询指定地点的经纬度方法
longitude经度,浮点数,范围为-180~180,负数表示西经。使用 gcj02 国测局坐标系,查询指定地点的经纬度方法

示例

在开发者工具中预览效果

扫码体验

swan.chooseLocation - 图3请使用百度APP扫码

图片示例

swan.chooseLocation - 图4

swan.chooseLocation - 图5

swan.chooseLocation - 图6

代码示例

  • 在 js 文件中
  1. Page({
  2. chooseLocation() {
  3. swan.authorize({
  4. scope: 'scope.userLocation',
  5. success: res => {
  6. console.log(res);
  7. },
  8. fail: function () {
  9. swan.openSetting({})
  10. }
  11. });
  12. let that = this;
  13. swan.chooseLocation({
  14. success: res => {
  15. console.log('success', res);
  16. let longitude = 'E:' + that.formatLocation(res.longitude) + '′';
  17. let latitude = 'N:' + that.formatLocation(res.latitude) + '′';
  18. that.setData({
  19. 'name': res.name,
  20. 'address': res.address,
  21. 'longitude': longitude,
  22. 'latitude': latitude
  23. });
  24. },
  25. fail: err => {
  26. console.log('错误码:' + err.errCode);
  27. console.log('错误信息:' + err.errMsg);
  28. }
  29. });
  30. },
  31. formatLocation(data) {
  32. return data.toFixed(2).replace('.', '°');
  33. }
  34. })