Last active
February 28, 2023 03:59
-
-
Save JenniferFuBook/de9ce81ad529e738a56aca15a560b8e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { MapContainer, TileLayer } from 'react-leaflet'; | |
import 'leaflet/dist/leaflet.css'; | |
function App() { | |
return ( | |
<MapContainer center={[38.907192, -77.036873]} zoom={8}> | |
<TileLayer | |
attribution='© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors' | |
url="https://tile.openstreetmap.org/{z}/{x}/{y}{r}.png" | |
/> | |
</MapContainer> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment