/** * @author: xd * @Date: 2022-10-15 19:50:33 * @LastEditors: xd * @LastEditTime: 2023-04-10 19:59:00 * @FilePath: \Map2D\src\extend\Control\drawText.ts * @Description: * * Copyright (c) 2022 by xd, All Rights Reserved. */ import { Control } from "ol/control"; export declare class drawTextControl extends Control { private _mouseposition; constructor(opt_options: any); show(): void; getElement(): HTMLDivElement; hide(): void; updateHtml(html: string): void; updateElementStyle(key: string, val: string | number | undefined | null): void; }