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

11 lines (10 loc) 368 B
import { PropsWithChildren } from "react"; import { MintMapProps } from "./types/MintMapProps"; /** * Mint Map 컴포넌트 * * @param {MintMapProps} MintMapProps * * @returns {JSX.Element} JSX */ export declare function MintMap({ mapLoadingComponent, dissolveEffectWhenLoaded, mapType, children, base, ...props }: PropsWithChildren<MintMapProps>): JSX.Element;