Interface SetTooltipSettingProperty

工具提示框設定。

interface SetTooltipSettingProperty {
    offset: GeoPoint;
    positionMode: TOOLTIP_POSITION_MODE;
    positionPreProcessing: null | TooltipPositionPreprocess;
    preProcessing: null | TooltipContentPreprocess;
    show: boolean;
    style: Partial<CSSStyleDeclaration> & {
        [propName: string]: string;
    };
}

Properties

offset: GeoPoint

偏移。

positionMode: TOOLTIP_POSITION_MODE

定位模式。

positionPreProcessing: null | TooltipPositionPreprocess

座標前處理方法。

preProcessing: null | TooltipContentPreprocess

內容前處理方法。

show: boolean

是否顯示。

style: Partial<CSSStyleDeclaration> & {
    [propName: string]: string;
}

工具提示框 CSS style 設定。

Type declaration

  • [propName: string]: string

Generated using TypeDoc