微信小程式API 查看位置


wx.openLocation(OBJECT)


使用微信內建地圖檢視位置

OBEJCT參數說明:

QQ截图20170208113613.png

範例程式碼:

wx.getLocation({
  type: 'gcj02', //返回可以用于wx.openLocation的经纬度
  success: function(res) {    var latitude = res.latitude    var longitude = res.longitude
    wx.openLocation({
      latitude: latitude,
      longitude: longitude,
      scale: 28
    })
  }
})


#Bug & Tip

  1. bug: iOS 6.3.30 type 參數不生效,只會傳回wgs84 類型的座標資訊
  2. tip: wx.getLocationwx.chooseLocation 介面需要使用者授權,請相容於使用者拒絕授權的場景。