微信小程式獲得個人定位
阿新 • • 發佈:2019-01-04
微信小程式實現簡單定位功能,簡單易讀,獲取經緯度資訊
在pages下建立一個單頁如location
local.js如下
getlaction:function(e){ var that = this wx.getLocation({ type: 'wgs84', success: function (res) { console.log(res) var latitude = res.latitude var longitude = res.longitude // var speed =res.speed // var accuracy = res.accuracy that.setData({ location:{ latitude: latitude, longitude: longitude } }) } }) },
location.wxml
<weui-input type='number' label="緯度" placeholder="{{location.latitude}}" icon="warn"> </weui-input> <weui-input type='number' label="經度" placeholder="{{location.longitude}}" icon="success"> </weui-input> <button form-type='submit' bindtap='getlaction'>獲取當前位置</button>
最後在.js中新增一個模態框來顯示經緯度:
wx.showModal({
title: '提示',
content: "緯度" + latitude + "經度" + longitude,
})