mapbox-gl 中的缩放中心偏移

问题描述 投票:0回答:1

我正在 nextjs 中处理 mapbox 地图,地图似乎偏离了中心。每次单击地图时,它都会将中心点移动到单击位置的左侧。以下是问题视频的链接。

视频

css mapbox mapbox-gl-js
1个回答
0
投票

我最终找到了答案here,但需要添加

!important

.mapboxgl-canvas {
  position: relative !important;
  left: 0;
  top: 0;
}
© www.soinside.com 2019 - 2024. All rights reserved.