如何在Mapbox GL JS中更改光标图像

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

如何更改Mapbox GL JS中的光标图像?我已经尝试过

#map-container {
    cursor: crosshair;
    }
but it doesn't work.
mapbox-gl-js
1个回答
0
投票
#map-container canvas {
    cursor: crosshair;
    }
where #map-container is the id of the element where your mapbox Gl JS is located.
© www.soinside.com 2019 - 2024. All rights reserved.