Constructor options for NavigateController.

The specified controllers are chained in a CompositeController in the following order:

2024.0

interface NavigateControllerConstructorOptions {
    panController?: null | Controller;
    rotateController?: null | Controller;
    zoomController?: null | Controller;
}

Properties

panController?: null | Controller

The pan controller to use. Defaults to a PanController. If null, panning is disabled.

rotateController?: null | Controller

The rotate controller to use. Defaults to a RotateController. If null, rotation is disabled.

zoomController?: null | Controller

The zoom controller to use. Defaults to a ZoomController. If null, zooming is disabled.