微信小プログラムmap地図整理


longitude:中心経度latitude:センター次元scale:スケーリング程度bindmaker tap:地図をクリックしてpolylineをトリガする:2点の間を線で引いて、2つの場所の間のパスを表示することができます.
wxssファイル
<map id="map" longitude="113.324520" latitude="23.099994" scale="14" markers="{{markers}}" bindmarkertap="markertap" polyline="{{polyline}}" style="width:100%;height:600px;">map>
jsファイル
Page({
  data:{
    markers:[{
      iconPath:"/images/[email protected]",
      id:0,
      latitude:23.0999994,
      longitude:113.324520,
      width:50,
      height:50
    }],
    polyline:[{
      points:[{
        longitude:113.3245211,
        latitude:23.10229
      },{
        longitude:113.324520,
        latitude:23.21229
      }],
      color:"FF0000DD",
      width:2,
      dottedLine:true
    }],
  },
  markertap(event){
    wx.openLocation({
      latitude: 23.099994, //   ,   -90~90,      
      longitude:113.324520, //   ,   -180~180,      
    })
  },
  onLoad:function(options){
  }
})