UNPKG

realmap-vue

Version:

Wooritech map chart component library

43 lines 1.12 kB
import { ChartConfiguration, LoadCallbackArgs } from '../../../realmap/out/realmap/js/src/main'; import { TemplateMap } from './TemplateContainerProps'; import * as Realmap from 'realmap'; export interface RealMapProps { /** * 라이선스 키를 설정한다. * 해당 Props로 라이선스 키를 설정하지 않으면 전역 객체에 `realMapLic`가 존재해야 한다. */ license?: string; /** * Realmap 모듈 주입 */ realmap: typeof Realmap; /** * 차트 DOM id (기본: "realmap") */ id?: string; /** * 차트 너비 (기본: 100 %) */ w?: string; /** * 차트 높이 (기본: 100 %) */ h?: string; /** * 차트 설정 */ config: ChartConfiguration; /** * 애니메이션 사용 여부 (기본: true) */ animate?: boolean; /** * 차트 로드 완료 콜백 */ onChartLoaded?: (param: LoadCallbackArgs) => void; /** * html 타입의 Annotation을 위한 탬플릿 객체 */ templates?: TemplateMap; } //# sourceMappingURL=RealMapVueProps.d.ts.map