mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
* 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
22 lines
511 B
TypeScript
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
|
|
}
|