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