這篇文章給大家分享的是有關(guān)微信小程序基于高德地圖查找位置并顯示文字的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

1.根據(jù)經(jīng)緯度在 地圖上查找定位
var key = app.globalData.amapKey;
var myAmapFun = new amapFile.AMapWX({ key: key });
myAmapFun.getRegeo({
iconPath: "../../assets/marker_checked.png",
iconWidth: 22,
iconHeight: 32,
success: function (data) {
that.setData({
markers: [{
latitude: that.data.gdlatitude,
longitude: that.data.gdlongitude,
}],
latitude: that.data.gdlatitude,
longitude: that.data.gdlongitude
});
},
fail: function (info) {
}
})2.地圖顯示具體位置信息文字
wx.request({
url: 'https://restapi.amap.com/v3/geocode/regeo',
data: {
key: app.globalData.amapKey,
location: that.data.gdlongitude + "," + that.data.gdlatitude,
extensions: "all",
s: "rsx",
sdkversion: "sdkversion",
logversion: "logversion"
},
success: function (res) {
that.setData({
textData: {
name: res.data.regeocode.pois[0].name,
desc: res.data.regeocode.formatted_address
}
})
console.log(JSON.stringify(res.data.regeocode.formatted_address));
},
fail: function (res) {
})感謝各位的閱讀!關(guān)于“微信小程序基于高德地圖查找位置并顯示文字”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
網(wǎng)頁標(biāo)題:微信小程序基于高德地圖查找位置并顯示文字-創(chuàng)新互聯(lián)
當(dāng)前網(wǎng)址:http://www.chinadenli.net/article34/deedpe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供云服務(wù)器、網(wǎng)站收錄、用戶體驗(yàn)、外貿(mào)網(wǎng)站建設(shè)、虛擬主機(jī)、網(wǎng)站營銷
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容