微信小程序实现定位功能

相信在大家心中定位是一个很难的功能,其实很简单,因为微信早就给我们提供了内置的方法
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
      })
    }
  })

就能看到这个效果了
微信小程序实现定位功能

上一篇:微信小程序 map组件 include-points 缩放视野以包含所有给定的坐标点


下一篇:IDL CMIP6 NC格式数据处理