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