UNPKG

@mint-ui/map

Version:

- React map library - Control various map with one interface - Google, Naver, Kakao map supported now - Typescript supported - Canvas marker supported

21 lines (20 loc) 733 B
import { PropsWithChildren } from "react"; declare type AlignHorizontal = 'left' | 'right' | 'center'; declare type AlignVertical = 'top' | 'bottom' | 'center'; export interface MapControlWrapperProps { width?: string | number; height?: string | number; zIndex?: number; positionHorizontal?: AlignHorizontal; positionVertical?: AlignVertical; disablePointerEvent?: boolean; } /** * Mint Map 컴포넌트 * * @param {MapControlWrapperProps} MapControlWrapperProps * * @returns {JSX.Element} JSX */ export declare function MapControlWrapper({ width, height, positionHorizontal, positionVertical, disablePointerEvent, zIndex, children }: PropsWithChildren<MapControlWrapperProps>): JSX.Element; export {};