uniapp小程序地图设置中心点位置向上偏移
uniapp地图位置偏移
·
图示:
id="map" ref="map"
<map style="width: 100vw; height: 100vh;" :latitude="latitude" :longitude="longitude" :scale="16" :markers="markers" :show-location="showLocation" id="map" ref="map"></map>
onMounted(() => {
let map = uni.createMapContext('map');
map.setCenterOffset({
offset: [0.5, 0.25]
})
})
更多推荐
已为社区贡献2条内容
所有评论(0)