微信小程式API 位置


wx.getLocation(OBJECT)

微信小程式取得目前的地理位置、速度

OBJECT參數說明:

QQ截图20170208113056.png

success回傳參數說明:

QQ截图20170208113101.png

範例程式碼:

wx.getLocation({
    type: 'wgs84',
    success: function (res) {
        var latitude = res.latitude; 
        var longitude = res.longitude; 
        var speed = res.speed; 
        var accuracy = res.accuracy; 
    }
});

wx.openLocation(OBJECT)-檢視最新版本

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

OBEJCT參數說明:

QQ截图20170208113108.png

範例程式碼:

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