import { MapStyle, MapGeo } from '../map/style'; import { Bubble, ScatterSymbolLabel } from '../../scatter/bubble/style'; export declare class bubbleMapGeo extends MapGeo { /** * 是否开启自动聚焦。开启聚焦后,高亮和过滤行为会自动触发缩放和平移。 * @title 自动聚焦 * @order 21 * @hidden */ autoFocus?: boolean; } export declare class Style extends MapStyle { /** * 地图设置 * @title 地图 * @order 70 */ geo: bubbleMapGeo; /** * 气泡设置 * @title 气泡 * @order 80 */ bubble?: Bubble; /** * 数据点标签 * @title 标签 * @order 110 */ label: ScatterSymbolLabel; }