91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序如何獲取位置展示地圖并標注信息

發布時間:2021-05-22 10:55:23 來源:億速云 閱讀:194 作者:小新 欄目:web開發

小編給大家分享一下微信小程序如何獲取位置展示地圖并標注信息,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

1.map組件的高度如果想要鋪滿屏幕,要是使用height:100vh樣式

2.獲取位置要在app.json中標明權限

3.先使用wx.getLocation獲取自己的位置,然后再回調中使用setData方法,賦予數據給前臺頁面展示標注點

index.js

//index.js
//獲取應用實例
const app = getApp()
Page({
 data: {
 },
 onLoad: function () {
  var self=this;
  this.mapCtx = wx.createMapContext('myMap');
  wx.getLocation({
   type: 'gcj02',
   success(res) {
    self.setData({
     latitude : res.latitude,
     longitude : res.longitude,
     markers: [{
      id: 1,
      latitude: res.latitude,
      longitude: res.longitude,
      iconPath: '/image/location.png',
      callout:{
       content:"服務:青少年英語培訓\r\n姓名:陶士涵\r\n電話:18808987876",
       bgColor:"#fff",
       padding:"5px",
       borderRadius:"2px",
       borderWidth:"1px",
       borderColor:"#07c160",
      }
     },
      {
       id: 2,
       latitude: res.latitude,
       longitude: res.longitude+0.01,
       iconPath: '/image/location.png',
       callout: {
        content: "服務:出租龍興園西區9號樓二單元501\r\n姓名:陶士涵\r\n電話:18808987876",
        bgColor: "#fff",
        padding: "5px",
        borderRadius: "2px",
        borderWidth: "1px",
        borderColor: "#07c160",
        
       }
      }
     ],
    });
   }
  })
 },
})

index.wxml

<!--index.wxml-->
  <map
   id="myMap"
   
   latitude="{{latitude}}"
   longitude="{{longitude}}"
   markers="{{markers}}"
   covers="{{covers}}"
   show-location
  ></map>

app.json

{
 "pages": [
  "pages/index/index",
  "pages/logs/logs"
 ],
 "window": {
  "backgroundTextStyle": "light",
  "navigationBarBackgroundColor": "#fff",
  "navigationBarTitleText": "找服務",
  "navigationBarTextStyle": "black"
 },
 "sitemapLocation": "sitemap.json",
 "permission": {
  "scope.userLocation": {
   "desc": "你的位置信息將用于獲取周邊服務" 
  }
 }
}

看完了這篇文章,相信你對“微信小程序如何獲取位置展示地圖并標注信息”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

周口市| 京山县| 宿迁市| 台州市| 西乌珠穆沁旗| 醴陵市| 濮阳市| 射阳县| 罗甸县| 法库县| 大新县| 黄龙县| 彰化市| 通辽市| 汽车| 康保县| 兴化市| 黄山市| 砀山县| 明水县| 满城县| 黔东| 肇庆市| 盱眙县| 策勒县| 邛崃市| 如东县| 大理市| 敦化市| 黄骅市| 湘乡市| 宁晋县| 永安市| 新田县| 佛学| 舞阳县| 色达县| 玛纳斯县| 商河县| 秭归县| 石阡县|