编程语言
首页 > 编程语言> > 微信小程序实现定位功能

微信小程序实现定位功能

作者:互联网

相信在大家心中定位是一个很难的功能,其实很简单,因为微信早就给我们提供了内置的方法
wx.getLocation可以异步获取当前的精度和维度
在js中编写

wx.getLocation({
      success:function(res){
          console.log(res.latitude);//当前维度
          console.log(res.longitude);//当前精度
      }
})

这样就可以配合wx.openLocation展开地图了
在js中执行

 wx.getLocation({
   success:function(res){
    wx.openLocation({
        latitude:res.latitude,
        longitude:res.longitude
      })
    }
  })

就能看到这个效果了
在这里插入图片描述

标签:定位,getLocation,openLocation,程序实现,微信,longitude,res,latitude,wx
来源: https://blog.csdn.net/weixin_45966674/article/details/118424184