diff --git a/src/components/PageComponents/Map/MapControlls.tsx b/src/components/PageComponents/Map/MapControlls.tsx new file mode 100644 index 00000000..e88599ee --- /dev/null +++ b/src/components/PageComponents/Map/MapControlls.tsx @@ -0,0 +1,40 @@ +import { FiCrosshair } from "react-icons/fi"; +import { useMap } from "react-map-gl"; + +import { + MagnifyingGlassMinusIcon, + MagnifyingGlassPlusIcon +} from "@heroicons/react/24/outline"; + +export const MapControlls = (): JSX.Element => { + const { current: map } = useMap(); + + return ( +