uniapp nvue页面 map地图全屏设置

**nvue页面:100vh 以及百分比不可用 **

1,可以获取当前屏幕高度 然后赋值

<map :latitude="latitude" :longitude="longitude" :style="'height:'+windowHeight*2+'rpx;'">map>
const { windowWidth, windowHeight,appName } = uni.getSystemInfoSync();	

2,也可以 不过有时候会不起效果

<view style="flex:1;">
	<map :latitude="latitude" :longitude="longitude" style="width: 750rpx;flex: 1;">map>
view>

卫星图:enable-satellite=“true” 和show-location=“true” 有冲突

你可能感兴趣的:(uniapp,uni-app)