2025-07-30 11:16:21 -07:00
|
|
|
import React from "react";
|
|
|
|
|
import { MapContainer, TileLayer, Marker, Popup } from "react-leaflet";
|
2025-07-23 12:03:06 -07:00
|
|
|
|
2025-08-05 15:08:18 -07:00
|
|
|
export default function GlobalMap() {
|
2025-07-31 08:56:32 -07:00
|
|
|
const position = [45.61142478054226, -122.49630033167544]; // [latitude, longitude]
|
2025-07-30 11:16:21 -07:00
|
|
|
return (
|
2025-07-31 14:39:35 -07:00
|
|
|
<MapContainer center={position} zoom={3} style={{ height: "100%", width: "100%" }}>
|
2025-07-31 08:56:32 -07:00
|
|
|
<TileLayer
|
|
|
|
|
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
|
|
|
|
|
attribution='© OpenStreetMap contributors'
|
|
|
|
|
/>
|
|
|
|
|
<Marker position={position}>
|
|
|
|
|
<Popup>
|
|
|
|
|
CVO — Home of the volcanoligists
|
|
|
|
|
</Popup>
|
|
|
|
|
</Marker>
|
|
|
|
|
</MapContainer>
|
2025-07-30 11:16:21 -07:00
|
|
|
);
|
2025-07-23 12:03:06 -07:00
|
|
|
}
|