interface StaticImageSourceEvents {
    error: {
        error: Error;
    };
    loaded: {};
    updated: {
        extent?: Extent;
    };
}

Hierarchy (view full)

Properties

Properties

error: {
    error: Error;
}

Raised when the remote image failed to load.

Type declaration

  • error: Error
loaded: {}

Raised when the remote image has been loaded.

Type declaration

    updated: {
        extent?: Extent;
    }

    Raised when the source's content has been updated.

    Type declaration