mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import { LatLng } from 'leaflet'
|
|
import { MapContainer } from 'react-leaflet'
|
|
|
|
import { ContextWrapper } from '#components/AppShell/ContextWrapper'
|
|
|
|
import { UtopiaMapInner } from './UtopiaMapInner'
|
|
|
|
import type { UtopiaMapProps } from '#types/UtopiaMapProps'
|
|
import 'react-toastify/dist/ReactToastify.css'
|
|
|
|
function UtopiaMap({
|
|
height = '500px',
|
|
width = '100%',
|
|
center = [50.6, 9.5],
|
|
zoom = 10,
|
|
children,
|
|
geo,
|
|
showFilterControl = false,
|
|
showGratitudeControl = false,
|
|
showLayerControl = true,
|
|
infoText,
|
|
donationWidget,
|
|
}: UtopiaMapProps) {
|
|
return (
|
|
<ContextWrapper>
|
|
<MapContainer
|
|
style={{ height, width }}
|
|
center={new LatLng(center[0], center[1])}
|
|
zoom={zoom}
|
|
zoomControl={false}
|
|
maxZoom={19}
|
|
>
|
|
<UtopiaMapInner
|
|
geo={geo}
|
|
showFilterControl={showFilterControl}
|
|
showGratitudeControl={showGratitudeControl}
|
|
showLayerControl={showLayerControl}
|
|
infoText={infoText}
|
|
donationWidget={donationWidget}
|
|
>
|
|
{children}
|
|
</UtopiaMapInner>
|
|
</MapContainer>
|
|
</ContextWrapper>
|
|
)
|
|
}
|
|
|
|
export { UtopiaMap }
|