UNPKG

react-amap-v2

Version:

高德地图 v2.0 react 组件

13 lines (12 loc) 355 B
import React from 'react'; export interface RectangleProps extends Omit<AMap.RectangleOptions, 'bounds'> { visible?: boolean; editable?: boolean; events?: any; editorEvents?: any; bounds: { southWest: AMap.Vector2; northEast: AMap.Vector2; }; } export declare const Rectangle: React.FC<RectangleProps>;