utopia-ui/src/types/UtopiaMapProps.d.ts
Anton Tranelis ed9906ae2f
fix(source): enhancing layer control (#223)
* 3.0.82

* version number

* 3.0.84

* 3.0.85

* 3.0.86

* 3.0.87

* 3.0.88

* url layer parameter

* layer control customizing

* 3.0.89

* 3.0.90

* 3.0.91

* typing

* 3.0.92

* fixing bug and imports

* 3.0.93

* fixing bug on profile-item-create caused by PR 185
2025-05-23 10:04:34 +02:00

22 lines
511 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
showThemeControl?: boolean
showZoomControl?: boolean
infoText?: string
donationWidget?: boolean
defaultTheme?: string
expandLayerControl?: boolean
}