/** * @author: xd * @Date: 2022-09-15 20:15:34 * @LastEditors: xd * @LastEditTime: 2023-05-25 15:49:43 * @FilePath: \Map2D\src\extend\Control\imageHJ.ts * @Description: * * Copyright (c) 2022 by xd, All Rights Reserved. */ import { Control } from "ol/control"; export declare class CrossStars extends Control { constructor(opt_options: any); /** * : 添加分屏控件 * @param {any} imageOption 包含{width,height,offsetX,offsetY},图片宽度,高度,偏移量 */ show(imageOption?: { width: number; height: number; offsetX: number; offsetY: number; }): void; hide(): void; }