@inweb/viewer-visualize
    Preparing search index...

    Interface ZoomAtEvent

    Event that fires when zooming of the camera using mouse wheel.

    interface ZoomAtEvent {
        data: number;
        type: "zoomat";
        x: number;
        y: number;
    }
    Index

    Properties

    Properties

    data: number

    New zoom factor.

    type: "zoomat"

    Event type.

    x: number

    X coordinate of the mouse pointer in screen coordinates.

    y: number

    Y coordinate of the mouse pointer in screen coordinates.