微信地图传参怎样传递?
wx.getLocation({//获取当前经纬度 type: 'wgs84', //返回可以用于wx.openLocation的经纬度,官方提示bug: iOS 6.3.30 type 参数不生效,只会返回 wgs84 类型的坐标信息 success: function (res) { wx.openLocation({//使用微信内置地图查看位置。 latitude: 22.5542080000,//要去的纬度-地址 longitude: 113.8878770000,//要去的经度-地址 name: "宝安中心A地铁口", address:'宝安中心A地铁口' }) }})
success: function (res)的如果要包含经纬度,要怎样传递res?