Files
var-monorepo/apps/dispatch/app/(dispatch)/_components/map/BaseMaps.tsx
2025-03-26 00:12:22 -07:00

15 lines
332 B
TypeScript

"use client";
import { TileLayer } from "react-leaflet";
export const BaseMaps = () => {
return (
<>
<TileLayer
attribution='&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
className="invert-100"
/>
</>
);
};