码迷,mamicode.com
首页 > 微信 > 详细

小程序 根据高德地图经纬度,在地图上查找具体位置,显示文字

时间:2019-10-29 13:17:03      阅读:796      评论:0      收藏:0      [点我收藏+]

标签:long   check   RKE   span   set   code   文字   ati   查找   

1.根据经纬度在 地图上查找定位  

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) {
  })

小程序 根据高德地图经纬度,在地图上查找具体位置,显示文字

标签:long   check   RKE   span   set   code   文字   ati   查找   

原文地址:https://www.cnblogs.com/yatou-26/p/11757970.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!