MapContext.initMarkerCluster中的参数gridSize在安卓机上配置无效
同样的代码在安卓机上和苹果上面是两个效果,无论设置girdSize为多小,安卓机都不为所动
let mapContext=wx.createMapContext('map', this);
//设置点聚合
mapContext.initMarkerCluster({
gridSize:10,
complete:(e)=>{
console.log(e)
}
})
左为苹果,右为安卓

