微信小程序獲取當前地址以及選擇地址詳解 地點標記
阿新 • • 發佈:2019-01-08
con ole location ges 定義 () 避免 fail 點擊
首先定義事件:
bindtap=‘getLocation‘<view class=‘store-bot‘ bindtap=‘getLocation‘> <view class=‘coll-img botimg‘> <image src=‘/images/dizhi.png‘></image> </view> <text>地址:廣西貴港市港北區仙衣路212號</text> </view>
然後:在js裏寫方法
打印出來的信息
想要標記哪個地點 要取得位置的經緯度
然後
ps:工作的時候 店申請入駐 都要獲取他店位置的經緯度保存;用於到後面顯示該店位置時,把經緯度賦值回openLocation方法裏的
latitude: ??? 賦值回來的緯度 longitude: ???賦值回來的經度 scale: 18, 放一下js代碼 避免手打哈哈哈// 點擊選擇地圖標記 getLocation() { wx.getLocation({ type: "wgs84", success: function(res) { console.log(res); wx.openLocation({ latitude: 37.4511496153052, longitude: 105.69409847259521, scale: 18, }) }, fail: function(err) { console.log(err) } }) },
微信小程序獲取當前地址以及選擇地址詳解 地點標記