收藏
回答

wx.getLocation的问题

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.getLocation 客户端 6.7.2 2.2.5 (2018.8.29 20:04:24)


wx.getLocation({

      type: 'wgs84',

      success: (res) => {

        const latitude = res.latitude;

        const longitude = res.longitude;


        console.log('wgs84', latitude, longitude);

      },

    });

    wx.getLocation({

      type: 'gcj02',

      success: (res) => {

        const latitude = res.latitude;

        const longitude = res.longitude;


        console.log('gcj02', latitude, longitude);

      },

    });


无论是GPS坐标还是国测局坐标,返回的经纬度都是一样的

官方人员 可以直接复制我这代码进行测试


回答关注问题邀请回答
收藏

1 个回答

  • 小程序技术专员-SgLy
    小程序技术专员-SgLy
    2018-09-05

    开发者工具的话,两者都是一样的。真机你试一下在一次 getLocation 的回调里再调用第二次,看看还有没有问题?像

    wx.getLocation({
      type: 'wgs84',
      success: (res) => {
        wx.getLocation({
          type: 'gcj02'
        })
      }
    })


    2018-09-05
    有用
    回复
登录 后发表内容