Created
January 22, 2019 20:17
-
-
Save danvk/8762b6e53ff87c58344a503c78b6f475 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface Props { | |
style: string | MapboxGl.Style; | |
center?: [number, number]; | |
zoom?: [number]; | |
maxBounds?: MapboxGl.LngLatBounds | FitBounds; | |
fitBounds?: FitBounds; | |
fitBoundsOptions?: FitBoundsOptions; | |
bearing?: [number]; | |
pitch?: [number]; | |
containerStyle?: React.CSSProperties; | |
className?: string; | |
movingMethod?: 'jumpTo' | 'easeTo' | 'flyTo'; | |
animationOptions?: Partial<AnimationOptions>; | |
flyToOptions?: Partial<FlyToOptions>; | |
children?: JSX.Element | JSX.Element[] | Array<JSX.Element | undefined>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment