小程序map 组件 include-points安卓8.0(或以上)使用异常
- 当前 Bug 的表现
华为荣耀10、小米6、华为mate9(都为安卓8.0或以上系统)
该截图是荣耀10 安卓8.1
进入页面刚进入时符合预期效果(见预期效果截图),过了1秒左右就变成了下图这样。
- 预期表现
安卓7.0 魅族魅蓝note3
- 复现路径
直接进入页面就会看到该bug
- Demo
wxml
< map id = "map" include-points = "{{points}}" polyline = "{{polyline}}" show-location style = "width: 100%; height: 300px;" ></ map > |
js(其中的两个经纬度一个是上海的,一个是北京的)
//js Page({ data: { points: [{ "latitude" : 31.03241, "longitude" : 121.22654 }, { "latitude" : 40.37, "longitude" : 116.85 }], polyline: [{ points: [{ longitude: 121.22654, latitude: 31.03241 }, { longitude: 116.85, latitude: 40.37 }], color: "#FF0000DD" , width: 2, dottedLine: true }], }, onShow: function () { }, }) |