標記點markers只能在初始化的時候設置,不支持動態更新。
示例:
<!-- map.wxml --> <map longitude="23.099994" latitude="113.324520" markers="{{markers}}" covers="{{covers}}" style="width: 375px; height: 200px;"></map> // map.js Page({ data: { markers: [{ latitude: 23.099994, longitude: 113.324520, name: 'T.I.T 創意園', desc: '我現在的位置' }], covers: [{ latitude: 23.099794, longitude: 113.324520, icaonPath: '../images/car.png', rotate: 10 }, { latitude: 23.099298, longitude: 113.324129, iconPath: '../images/car.png', rotate: 90 }] } })
B. 微信小程序 怎麼獲取page函數中的變數
$.post(url,{},function(json){ var o = eval("("+json+")");// 將json轉換為對象 json 格式{status:'1',data:'2'} alert(o.status); alert(o.data); });