@uiw/react-baidu-map-polygon
Version:
Baidu Map map-polygon Components for React.
14 lines (13 loc) • 448 B
TypeScript
import React from 'react';
import { OverlayProps } from '@uiw/react-baidu-map-map';
export * from './usePolygon';
export interface PolygonProps extends BMap.PolygonOptions, BMap.PolygonEvents, OverlayProps {
/**
* 设置折线的点数组
*/
path: BMap.Point[];
}
declare const _default: React.ForwardRefExoticComponent<PolygonProps & React.RefAttributes<PolygonProps & {
polygon?: BMap.Polygon;
}>>;
export default _default;