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

13 lines (12 loc) 421 B
import { PropsWithChildren } from "react"; import { PolygonOptions } from "../../types/MapDrawables"; export interface MapPolygonWrapperProps extends PolygonOptions { } /** * Mint Map 컴포넌트 * * @param {MapControlWrapperProps} MapControlWrapperProps * * @returns {JSX.Element} JSX */ export declare function MapPolygonWrapper({ children, ...options }: PropsWithChildren<MapPolygonWrapperProps>): JSX.Element;