微信小程序的经纬度不想写死,需要转成number类型不能用浮点型

时间:2018-03-17 17:51:09   收藏:0   阅读:2064
click: function (e) {
  var msg = this.data.placeData;
  var latitude = Number(msg.latitude)
  var longitude = Number(msg.longitude)
  wx.openLocation({
    latitude: latitude,
    longitude: longitude,
    scale: 18,
    name: msg.title,
    address: msg.address
  })
},
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!