API (v2.0.0) - Giro3D
    Preparing search index...

    Interface GlobeControlsOptions

    interface GlobeControlsOptions {
        camera: PerspectiveCamera | OrthographicCamera;
        dampingFactor?: number;
        domElement: HTMLElement;
        ellipsoid?: Ellipsoid;
        enableDamping?: boolean;
        maxDistance?: number;
        minDistance?: number;
        scene: Object3D;
        zoomSpeed?: number;
    }
    Index

    Properties

    camera: PerspectiveCamera | OrthographicCamera

    The camera to control.

    dampingFactor?: number

    The damping factor.

    0.15
    
    domElement: HTMLElement

    The DOM element to listen to.

    ellipsoid?: Ellipsoid

    The ellipsoid to navigate around.

    Ellipsoid.WGS84

    enableDamping?: boolean

    Enables damping

    false
    
    maxDistance?: number

    The maximum distance to the ellipsoid.

    infinity
    
    minDistance?: number

    The minimum distance to the ellipsoid.

    10
    
    scene: Object3D

    The scene to navigate around. Can be the root object of the Giro3D instance, or a particular globe's root object.

    zoomSpeed?: number

    The zoom speed

    1