map地图组件,真机button不显示
- 当前 Bug 的表现(可附上截图)
真机:
模拟器:
- 预期表现
真机能显示button控件
- 复现路径
- 提供一个最简复现 Demo
<view class=‘container’>
<map class=‘map’></map>
<cover-view class=‘cover’>
<button bindgetuserinfo=‘cover’ open-type=‘getUserInfo’>button</button>
</cover-view>
</view>
.container {
display: flex;
width: 100%;
height: 100%;
}
.map {
width: 100%;
height: 100%;
}
.cover {
position: fixed;
bottom: 120rpx;
width: 100%;
height: 50%;
background: lightblue;
}