1、效果展示
2、关键代码
.wxml布局文件代码
纬度:{{latitude}}经度:{{longitude}}
.js逻辑文件代码
Page({
data: {
latitude:'',
longitude:''
},
onLoad: function () {
var that=this;
wx.getLocation({
type: 'wgs84',
success: function(res) {
that.setData({
latitude:res.latitude,
longitude:res.longitude
})
}
})
}
})
3、源代码获取方式
百度云链接:http://pan.baidu.com/s/1kV4SujX
4、在获取自己所处的位置坐标的过程中有遇到任何问题或者不明白的地方可以添加我的微信号进行咨询,感谢支持!微信号:FutureJet