地理位置

使用微信内置地图查看位置接口

  1. wx.openLocation({
  2. latitude: 0, // 纬度,浮点数,范围为90 ~ -90
  3. longitude: 0, // 经度,浮点数,范围为180 ~ -180。
  4. name: '', // 位置名
  5. address: '', // 地址详情说明
  6. scale: 1, // 地图缩放级别,整形值,范围从1~28。默认为最大
  7. infoUrl: '' // 在查看位置界面底部显示的超链接,可点击跳转
  8. });

获取地理位置接口

  1. wx.getLocation({
  2. type: 'wgs84', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02'
  3. success: function (res) {
  4. var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90
  5. var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。
  6. var speed = res.speed; // 速度,以米/每秒计
  7. var accuracy = res.accuracy; // 位置精度
  8. }
  9. });