微信小程序之map地圖

微信小程序地圖操作比較簡單令境,api也很少,使用map組件來展示枪芒。說到地圖铲球,那就先來看基礎(chǔ)定位:
定位用到wx.getLocation(OBJECT)函數(shù)挺庞,代碼如下:

wx.getLocation({
  type: 'wgs84',
  success: function(res) {
    var latitude = res.latitude
    var longitude = res.longitude
    var speed = res.speed
    var accuracy = res.accuracy
  }
})

定位成功會返回四個參數(shù)值,如下:


map屬性太多稼病,先看一下:


如果用到地圖选侨,基本上所有屬性都會用到。
下面一一看一下然走,我們先看效果圖吧援制,先看真相:


這里我只用了一個markers,就是定位當前位置的紅色markers芍瑞,用法如下:

 wx.getLocation({
      type: 'wgs84', // 默認為 wgs84 返回 gps 坐標晨仑,gcj02 返回可用于 wx.openLocation 的坐標
      success: function (res) {

        _this.setData({
          latitude: res.latitude,
          longitude: res.longitude,
          markers: [{
            id: "1",
            latitude: res.latitude,
            longitude: res.longitude,
            width: 50,
            height: 50,
            iconPath: "/assests/imgs/my.png",
            title: "哪里"

          }],
          circles: [{
            latitude: res.latitude,
            longitude: res.longitude,
            color: '#FF0000DD',
            fillColor: '#7cb5ec88',
            radius: 3000,
            strokeWidth: 1
          }]

        })
      }

    })

這里加了circles,半徑是3000米拆檬,具體的api可自行看官網(wǎng)洪己。

接下來看看controls,控制層竟贯,在地圖上顯示控件答捕,控件不隨著地圖移動,看API:


注意看示例圖的右上角澄耍,有兩個按鈕噪珊,加減號晌缘,是控制地圖scale的數(shù)值變化齐莲,動態(tài)縮放地圖的,controls用法也很簡單:

 controls: [{
      id: 1,
      iconPath: '/assests/imgs/jian.png',
      position: {
        left: 320,
        top: 100 - 50,
        width: 20,
        height: 20
      },
      clickable: true
    },
    {
      id: 2,
      iconPath: '/assests/imgs/jia.png',
      position: {
        left: 340,
        top: 100 - 50,
        width: 20,
        height: 20
      },
      clickable: true
    }
    ]

最后我們看一張gif圖:


最后上一下具體代碼:
wxml:

  <map id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="{{scale}}" controls="{{controls}}" bindcontroltap="controltap" markers="{{markers}}" circles="{{circles}}" bindmarkertap="markertap" polyline="{{polyline}}" bindregionchange="regionchange" show-location style="width: 100%; height: {{view.Height}}px;"></map>

js:

Page({
  data: {
    Height: 0,
    scale: 13,
    latitude: "",
    longitude: "",
    markers: [],
    controls: [{
      id: 1,
      iconPath: '/assests/imgs/jian.png',
      position: {
        left: 320,
        top: 100 - 50,
        width: 20,
        height: 20
      },
      clickable: true
    },
    {
      id: 2,
      iconPath: '/assests/imgs/jia.png',
      position: {
        left: 340,
        top: 100 - 50,
        width: 20,
        height: 20
      },
      clickable: true
    }
    ],
    circles: []

  },

  onLoad: function () {
    var _this = this;

    wx.getSystemInfo({
      success: function (res) {
        //設(shè)置map高度磷箕,根據(jù)當前設(shè)備寬高滿屏顯示
        _this.setData({
          view: {
            Height: res.windowHeight
          }

        })

      }
    })

    wx.getLocation({
      type: 'wgs84', // 默認為 wgs84 返回 gps 坐標选酗,gcj02 返回可用于 wx.openLocation 的坐標
      success: function (res) {

        _this.setData({
          latitude: res.latitude,
          longitude: res.longitude,
          markers: [{
            id: "1",
            latitude: res.latitude,
            longitude: res.longitude,
            width: 50,
            height: 50,
            iconPath: "/assests/imgs/my.png",
            title: "哪里"

          }],
          circles: [{
            latitude: res.latitude,
            longitude: res.longitude,
            color: '#FF0000DD',
            fillColor: '#7cb5ec88',
            radius: 3000,
            strokeWidth: 1
          }]

        })
      }

    })

  },

  regionchange(e) {
    console.log("regionchange===" + e.type)
  },

  //點擊merkers
  markertap(e) {
    console.log(e.markerId)

    wx.showActionSheet({
      itemList: ["A"],
      success: function (res) {
        console.log(res.tapIndex)
      },
      fail: function (res) {
        console.log(res.errMsg)
      }
    })
  },

  //點擊縮放按鈕動態(tài)請求數(shù)據(jù)
  controltap(e) {
    var that = this;
    console.log("scale===" + this.data.scale)
    if (e.controlId === 1) {
      // if (this.data.scale === 13) {
      that.setData({
        scale: --this.data.scale
      })
      // }
    } else {
      //  if (this.data.scale !== 13) {
      that.setData({
        scale: ++this.data.scale
      })
      // }
    }

  },

})

祝大家學(xué)習(xí)愉快。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末岳枷,一起剝皮案震驚了整個濱河市芒填,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌空繁,老刑警劉巖殿衰,帶你破解...
    沈念sama閱讀 211,639評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異盛泡,居然都是意外死亡闷祥,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,277評論 3 385
  • 文/潘曉璐 我一進店門傲诵,熙熙樓的掌柜王于貴愁眉苦臉地迎上來凯砍,“玉大人箱硕,你說我怎么就攤上這事∥蝰茫” “怎么了剧罩?”我有些...
    開封第一講書人閱讀 157,221評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長座泳。 經(jīng)常有香客問我惠昔,道長,這世上最難降的妖魔是什么钳榨? 我笑而不...
    開封第一講書人閱讀 56,474評論 1 283
  • 正文 為了忘掉前任舰罚,我火速辦了婚禮,結(jié)果婚禮上薛耻,老公的妹妹穿的比我還像新娘营罢。我一直安慰自己,他們只是感情好饼齿,可當我...
    茶點故事閱讀 65,570評論 6 386
  • 文/花漫 我一把揭開白布饲漾。 她就那樣靜靜地躺著,像睡著了一般缕溉。 火紅的嫁衣襯著肌膚如雪考传。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,816評論 1 290
  • 那天证鸥,我揣著相機與錄音僚楞,去河邊找鬼。 笑死枉层,一個胖子當著我的面吹牛泉褐,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播鸟蜡,決...
    沈念sama閱讀 38,957評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼膜赃,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了揉忘?” 一聲冷哼從身側(cè)響起跳座,我...
    開封第一講書人閱讀 37,718評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎泣矛,沒想到半個月后疲眷,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,176評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡您朽,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,511評論 2 327
  • 正文 我和宋清朗相戀三年狂丝,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,646評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡美侦,死狀恐怖产舞,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情菠剩,我是刑警寧澤易猫,帶...
    沈念sama閱讀 34,322評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站具壮,受9級特大地震影響准颓,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜棺妓,卻給世界環(huán)境...
    茶點故事閱讀 39,934評論 3 313
  • 文/蒙蒙 一攘已、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧怜跑,春花似錦样勃、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,755評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至植锉,卻和暖如春辫樱,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背俊庇。 一陣腳步聲響...
    開封第一講書人閱讀 31,987評論 1 266
  • 我被黑心中介騙來泰國打工狮暑, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人辉饱。 一個月前我還...
    沈念sama閱讀 46,358評論 2 360
  • 正文 我出身青樓搬男,卻偏偏與公主長得像,于是被迫代替她去往敵國和親鞋囊。 傳聞我的和親對象是個殘疾皇子止后,可洞房花燭夜當晚...
    茶點故事閱讀 43,514評論 2 348

推薦閱讀更多精彩內(nèi)容