import { Plot } from '../../core/plot'; import { GridOptions } from './types'; import { Source } from '../../types'; import { TextLayer } from '../../layers/text-layer'; import { GridLayer } from '../../layers/grid-layer'; import { LayerGroup } from '../../core/layer/layer-group'; export type { GridOptions }; export declare class Grid extends Plot { /** * 默认配置项 */ static DefaultOptions: Partial; /** * 地图类型 */ type: import("../../types").PlotType; /** * 网格图层 */ gridLayer: GridLayer; /** * 标注图层 */ labelLayer: TextLayer | undefined; /** * 获取默认配置 */ protected getDefaultOptions(): Partial; /** * 创建图层 */ protected createLayers(source: Source): LayerGroup; /** * 更新图层 */ protected updateLayers(options: GridOptions): void; }