- wx.getLocation 苹果机和android返回的经纬度的精确度
wx.getLocation 苹果机和android返回的经纬度的精确度不一样要怎么处理?
2018-01-24 - 微信小程序显示带有方向的当前定位点显示在地图中心
打开地图后怎么设置微信小程序显示带有方向的当前定位点显示在地图中心 <map id="map" longitude="{{curLongitude}}" latitude="{{curLatitude}}" scale="18" markers='{{markers}}' show-location style="width: 100%;height:{{mapHeight}}px">map> curLongitude,curLatitude设置的当前经纬度,但是这个经纬度没有显示在地图界面的中心位置。
2018-01-23 - tabar导致view显示不出来
<view style='width:100%;height:32px;background-color:red'> 第一部分 </view> <map id="map" scale="18" markers='{{markers}}' show-location style="width: 100%;height:{{mapHeight}}px"></map> <view style='width:100%;height:50px;background-color:blue'> 第二部分 </view> // pages/map/map.js var app = getApp(); Page({ data: { mapHeight: '', markers: [] }, onLoad: function () { }, onReady: function () { var that = this // 获取系统信息 wx.getSystemInfo({ success: function (res) { that.setData({ mapHeight: res.windowHeight - 82 }) } }) } }) 为什么在有tabar情况下 <view style='width:100%;height:50px;background-color:blue'> 第二部分 </view> 这一块在adroid机上显示不出来。在iphone上正常。
2018-01-18 - 微信小程序怎么下载服务端实时生成的excel
1、现在有个需求是微信界面点击按钮查询,服务端数据生成excel,微信小程序导出excel。 这个要怎么来实现。
2017-12-29