微信小程序,wx.getLocation()和wx.openLocation() 配合使用进行微信定位功能

功能展示:

js代码,功能实现:

  wx.getLocation({
          altitude: 'true',
        }).then(res=>{
            console.log(res);
            wx.openLocation({
              latitude: res.latitude,
              longitude: res.longitude,
            })
        })
    },

你可能感兴趣的:(js,微信小程序,微信,小程序)