微信小程序如何在地图选择地址并返回经纬度?微信小程序的地址管理中,经常需要获取地址的详细地址信息和地址经纬度信息
实现效果如下:
var that = this
wx.chooseLocation({
success: function (res) {
// success
console.log(res,"location")
that.setData({
hasLocation: true,
location: {
longitude: res.longitude,
latitude: res.latitude
},
detail_info: res.address,
wd: res.latitude,
jd: res.longitude
})
},
fail: function () {
// fail
},
complete: function () {
// complete
}
})
多程序小程序工具提供多类型商城/门店小程序制作,可视化编辑 1秒生成5步上线。通过拖拽、拼接模块布局小程序商城页面,所看即所得,只需要美工就能做出精美商城。
更多小程序资讯,尽在:www.duochengxu.com
