We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ee1310 commit 48c9aa5Copy full SHA for 48c9aa5
src/map/core/MapView.jsx
@@ -24,6 +24,15 @@ export const map = new maplibregl.Map({
24
container: element,
25
});
26
27
+map.on('load', () => {
28
+ const container = document.querySelector('.maplibregl-ctrl-bottom-right');
29
+ if (container) {
30
+ container.style.display = 'flex';
31
+ container.style.flexDirection = 'row';
32
+ container.style.alignItems = 'flex-end';
33
+ }
34
+});
35
+
36
let ready = false;
37
const readyListeners = new Set();
38
0 commit comments