<!--pages/map/map.wxml-->
<view class="fullscreen">
<map longitude="{{user_longitude}}" latitude="{{user_latitude}}" class=""></map>
</view>
wxss:
map{
width: 100%;
height: 100%
}
.fullscreen{
height: 100%;
}
给map加上style的效果和不加的如下两图:
加上height width以后就消失了。请问应该怎么用?
父级height其实是0,可以设height:100vh
外层还有个page。谢谢了
<!--wxml--> <view class="fullscreen"> <map longitude="{{user_longitude}}" latitude="{{user_latitude}}" class="map"></map> </view>
我也不知道为什么,下面map的样式这里,用%不行,用vh才有效,索性宽我也换vw
参考单位的连接:https://blog.csdn.net/liyi1009365545/article/details/78542707
/* wxss */ /* width:100%=750rpx=100vw */ /* height:100%=100vh */ .map{ width:100vw; height:100vh; }