Type alias InfoWindowInitOptions

InfoWindowInitOptions: {
    className?: string;
    content: string | HTMLElement;
    maxWidth?: number | string;
    name?: string;
    offset?: Point;
    position: LatLng;
    showClose?: boolean;
    tail?: InfoWindowTailPosition;
    visible?: boolean;
    zIndex?: number;
}

InfoWindow初期化オプション

Type declaration

  • Optional className?: string

    任意のクラス名設定(半角スペース区切りで複数指定可能)

  • content: string | HTMLElement

    表示要素(文字列 or HTML文字列 or DOM要素)

  • Optional maxWidth?: number | string

    吹き出しの最大幅

  • Optional name?: string

    識別用名称

  • Optional offset?: Point

    表示位置のずらし幅

  • position: LatLng

    表示位置の緯度経度

  • Optional showClose?: boolean

    閉じるボタンの表示有無

    Default

    true

  • Optional tail?: InfoWindowTailPosition

    吹き出しの表示方向

    Default

    bottom

  • Optional visible?: boolean

    表示設定

    Default

    true

  • Optional zIndex?: number

    重なり順