/**
* @file 控件基类
* @author hedongran
* @email hdr01@126.com
*/
///
* BMAP\_ANCHOR\_TOP\_LEFT: 左上
* BMAP\_ANCHOR\_TOP\_RIGHT: 右上
* BMAP\_ANCHOR\_BOTTOM\_LEFT: 左下
* BMAP\_ANCHOR\_BOTTOM\_RIGHT: 右下
*/
anchor?: BMapGL.ControlAnchor;
/** 控件的相对像素偏移量 */
offset?: BMapGL.Size;
}
export default class Control
extends Component
{
static defaultProps: ControlProps | object;
static contextType: import("react").Context