@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) • 426 B
TypeScript
import { PropsWithChildren } from "react";
import { PolylineOptions } from "../../types/MapDrawables";
export interface MapPolylineWrapperProps extends PolylineOptions {
}
/**
* Mint Map 컴포넌트
*
* @param {MapControlWrapperProps} MapControlWrapperProps
*
* @returns {JSX.Element} JSX
*/
export declare function MapPolylineWrapper({ children, ...options }: PropsWithChildren<MapPolylineWrapperProps>): JSX.Element;