Page({/*** 页面的初始数据*/data: {storageData: []},/*** 生命周期函数--监听页面加载*/onLoad: function(options) {},// 测试testBtnClick: function() {// 绘图const ctx = wx.createCanvasContext('myCanvas')ctx.setFillStyle('red')ctx.fillRect(10, 10, 150, 100)ctx.draw()ctx.fillRect(50, 50, 150, 100)ctx.draw(true) //保持上次绘画效果ctx.setFillStyle('blue')ctx.fillRect(100, 100, 150, 100)ctx.draw(true) //保持上次绘画效果// 地图wx.getLocation({ //获取经纬度坐标type: 'wgs84',success(res) {const latitude = res.latitudeconst longitude = res.longitudeconst speed = res.speedconst accuracy = res.accuracywx.openLocation({ //打开地图位置latitude,longitude,scale: 28})}})}
})