- map设置了中心点的坐标,但是真机上视觉上不居中?
onLoad: function (options) { //地图 var that = this; // unlogin = console.log('授权电话号码有没有') // console.log(wx.getStorageSync('phonenumber').length) console.log(wx.getStorageSync('phonenumber')) // console.log(app.globalData.userInfo.unlogin) if (app.globalData.userInfo.unlogin && app.globalData.userInfo.unlogin == 1 ){ console.log('11111'); that.setData({ unlogin: true }) } if (wx.getStorageSync('nickname') == '' && app.globalData.userInfo.unlogin != 1 ) { wx.navigateTo({ url: '/pages/newnewindex/newnewindex' }) } wx.getStorage({ key: 'phonenumber', success(res) { if (res.data != "" && res.data != null) that.setData({ phonenumber: res.data, hasPhoneNumber: true }) } }) // var that = this qqmapsdk = new QQMapWX({ key: 'UIVBZ-IGVWP-CSWDB-VILVI-ZVVQ7-2JBFG' }) var markers = [] wx.request({ url: 'https://www.walnutbookstore.com:8003/store/get', data: {}, method: 'POST', success: function (res) { for (var x = 0; x < res.data.length; x++) { res.data[x].iconPath = '../../img/u98.png' // res.data[x].iconPath = '../../img/lllo5.svg' res.data[x].width = 32 res.data[x].height = 37 } markers = res.data console.log(markers) wx.getLocation({ success: function (res) { var longitude = res.longitude; var latitude = res.latitude; that.setData({ appmarkers: markers, longitude: longitude, // iconPath: "../images/imgs_main_bike@2x.png", latitude: latitude, 'markers': markers, mapScale: 15 // mapScale: 15 }) console.log('longitude' + longitude); console.log('latitude' + latitude); // 查找单车信息 // findBikes(longitude, latitude, that); }, }); }, fail: function (res) { console.log("失败--------------") console.log(res) } }) }, <map id="myMap" longitude="{{longitude}}" latitude="{{latitude}}" markers="{{markers}}" scale="{{mapScale}}" show-location bindregionchange="regionchange" bindmarkertap="showModal" controls="{{controls}}" bindcontroltap="controltap"> </map> 开发者工具:[图片]显示正常 真机iphonex:[图片] 安卓手机:[图片]
2019-10-21 - canvas不显示
点击按钮canvas生成海报,生成完成后点击按钮保存图库。 保存后在点击按钮生成图片的时候canvas部分不可见,并且在此点击保存是一张透明的图片。 [图片]
2019-08-06 - 微信开发工具除了button其他的绑定bindtap点击都无响应
今天早上更新之后除了button之外的按钮,绑定了bindtap全部触发不了
2019-07-24 - 微信小程序上传不了代码
上传代码提示 [图片] 实际上我的这张图是存在的。5分钟前还可以正常上传。5分钟后一直提示这个错误 [图片]
2019-07-02 - 微信小程序开发工具真机调试问题
[图片] 点击微信开发者工具真机调试就提示这个,扫码之后显示 [图片]
2019-06-10 - 消息推送
小程序唤起公众号消息推送,体验版一切正常,正式版推送就不能推送,需要配置什么吗?公众号或者小程序
2019-05-24