国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 熱點 > 微信 > 正文

微信小程序地圖(map)組件點擊(tap)獲取經緯度的方法

2024-07-22 01:19:14
字體:
來源:轉載
供稿:網友

微信小程序中使用地圖(map)組件,通過點擊(tap)獲取經緯度,按照官方的回應,暫時是沒法做到的,從地圖組件API多有殘缺判斷,懷疑是個實習生干的...

做個變通,適用性有限,請大家參考。基本思路就是在地圖上鋪滿一層marker,從而通過點擊marker獲得經緯度。

代碼如下:<map id="map" longitude="102.324520" latitude="40.099994" scale="4" bindcontroltap="controltap" polygons="{{polygons}}" bindregionchange="regionchange" markers="{{markers}}" bindmarkertap="markertap" show-location style="width: 100%; height: 700px;"></map>

const app = getApp()const markersize = 30function range(start, edge, step) { for (var ret = [];  (edge - start) * step > 0; start += step) {  ret.push(start); } return ret;}function markers(northeast, southwest, scale, width, height) { const markerslng = (northeast.longitude - southwest.longitude) * markersize / width const markerslat = (northeast.latitude - southwest.latitude) * markersize / height const maxlon = northeast.longitude const minlon = southwest.longitude const maxlat = northeast.latitude const minlat = southwest.latitude const lons = range(minlon, maxlon, markerslng) const lats = range(minlat, maxlat, markerslat) let _markers = [] lons.forEach((lon, i) => {  lats.forEach((lat, j) => {   _markers.push({    id: lon + ',' + lat,    latitude: lat,    longitude: lon,    iconPath: '/marker.png',    alpha: 0.1, //將圖片設置為透明,通過開發者工具看不出效果,但真機是有效果的    width: markersize,    height: markersize   })  }) }) return _markers}Page({ data: {  polygons: [],  controls: [{   id: 1,   position: {    left: 0,    top: 300 - 50,    width: 50,    height: 50   },   clickable: true  }],  markers: [] }, createMarkers() {  this.mapCtx = wx.createMapContext('map')  const query = wx.createSelectorQuery()  const map = query.select('#map').boundingClientRect()  let that = this  that.mapCtx.getRegion({   success(res1) {    that.mapCtx.getScale({     success(res2) {      query.exec((res) => {       let width = res[0].width;       let height = res[0].height;       let _markers = markers(res1.northeast, res1.southwest, res2.scale, width, height)       that.data.markers = _markers       that.setData(that.data)      })     }    })   }  }) }, regionchange(e) {  this.createMarkers() }, markertap(e) {  console.log(e.markerId) }, controltap(e) {  console.log(e.controlId) }, onReady(e) {  this.createMarkers() }})

效果如圖

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持錯新站長站。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 兰西县| 湾仔区| 枞阳县| 岳西县| 通州市| 桐柏县| 商水县| 绥德县| 凤山县| 梁平县| 汾西县| 化德县| 贵州省| 衡水市| 武穴市| 岗巴县| 车险| 潜山县| 桦南县| 黄冈市| 平阳县| 锦州市| 大同县| 克东县| 泸西县| 固始县| 福州市| 姚安县| 新昌县| 金川县| 井冈山市| 遵化市| 保靖县| 河津市| 太湖县| 如皋市| 东光县| 昭苏县| 锦屏县| 烟台市| 寿阳县|