@r2don/react-naver-map
Version:
## Introduction
19 lines (18 loc) • 536 B
TypeScript
/// <reference types="react" />
/// <reference types="navermaps" />
interface PolylineProps {
path: {
latitude: number;
longitude: number;
}[];
strokeColor?: string;
strokeWeight?: number;
strokeOpacity?: number;
strokeStyle?: naver.maps.strokeStyleType;
}
/**
* Set polyline into Map obejct without rendering anything in VirtualDOM
* @returns <></>
*/
export declare const Polyline: ({ path, strokeColor, strokeWeight, strokeOpacity, strokeStyle, }: PolylineProps) => JSX.Element;
export {};