Skip to content

Instantly share code, notes, and snippets.

@JenniferFuBook
Last active February 28, 2023 03:59
Show Gist options
  • Save JenniferFuBook/de9ce81ad529e738a56aca15a560b8e5 to your computer and use it in GitHub Desktop.
Save JenniferFuBook/de9ce81ad529e738a56aca15a560b8e5 to your computer and use it in GitHub Desktop.
import { MapContainer, TileLayer } from 'react-leaflet';
import 'leaflet/dist/leaflet.css';
function App() {
return (
<MapContainer center={[38.907192, -77.036873]} zoom={8}>
<TileLayer
attribution='&copy; <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