mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
18 lines
399 B
TypeScript
18 lines
399 B
TypeScript
import type { Tag } from './Tag'
|
|
import type { GeoJsonObject } from 'geojson'
|
|
|
|
export interface UtopiaMapProps {
|
|
height?: string
|
|
width?: string
|
|
center?: [number, number]
|
|
zoom?: number
|
|
tags?: Tag[]
|
|
children?: React.ReactNode
|
|
geo?: GeoJsonObject
|
|
showFilterControl?: boolean
|
|
showLayerControl?: boolean
|
|
showGratitudeControl?: boolean
|
|
infoText?: string
|
|
donationWidget?: boolean
|
|
}
|