@mint-ui/map
Version:
- React map library - Control various map with one interface - Google, Naver, Kakao map supported now - Typescript supported - Canvas marker supported
16 lines (15 loc) • 468 B
TypeScript
/// <reference types="react" />
import { Position } from "../../types/MapTypes";
interface MapBuildingProjectionProps {
basePolygonPath: Position[];
numberOfFloor: number;
heightOfFloor?: number;
lineColor?: string;
lineOpacity?: number;
fillColor?: string;
fillOpacity?: number;
title?: string;
titleElement?: JSX.Element;
}
export declare function MapBuildingProjection(props: MapBuildingProjectionProps): JSX.Element;
export {};