import { GisChartStyle } from '@shujujiang/schemas/widget/style'; import { MapHeatmap, HeatBubble } from '../../map/heatmap/style'; import { ScatterSymbolLabel } from '../../scatter/bubble/style'; import { GisGeo } from '../bubblegis/style'; export declare class Style extends GisChartStyle { /** * 地图设置 * @title 地图 * @order 70 */ gis: GisGeo; /** * 热力设置 * @title 热力 * @order 75 */ heatmap: MapHeatmap; /** * 标记设置 * @title 标记 * @order 76 */ bubble?: HeatBubble; /** * 数据点标签 * @title 标签 * @order 110 */ label: ScatterSymbolLabel; }