Browse Source

Auto set map bounds on load

pull/66/head
Sacha Weatherstone 3 years ago
parent
commit
2c3b7893ef
  1. 5
      src/components/PageComponents/Map/MapControlls.tsx

5
src/components/PageComponents/Map/MapControlls.tsx

@ -8,6 +8,7 @@ import {
ShareIcon
} from "@heroicons/react/24/outline";
import { useDevice } from "@app/core/providers/useDevice.js";
import { useEffect } from "react";
export const MapControlls = (): JSX.Element => {
const { current: map } = useMap();
@ -44,6 +45,10 @@ export const MapControlls = (): JSX.Element => {
});
}
};
useEffect(() => {
getBBox();
}, [])
return (
<div className="absolute right-0 top-0 z-10 m-2 ">

Loading…
Cancel
Save