Type Alias ViewpointOptions

ViewpointOptions: VcsObjectOptions & {
    animate?: boolean;
    cameraPosition?: Coordinate;
    distance?: number;
    duration?: number;
    easingFunctionName?: string;
    groundPosition?: Coordinate;
    heading?: number;
    pitch?: number;
    roll?: number;
}

Type declaration

  • Optionalanimate?: boolean

    if possible the switching to the new viewpoint will be animated

  • OptionalcameraPosition?: Coordinate

    Z value mandatory

  • Optionaldistance?: number

    distance between the camera position and the target

  • Optionalduration?: number

    animation duration override

  • OptionaleasingFunctionName?: string

    a Cesium.EasingFunction name to use for the flight

  • OptionalgroundPosition?: Coordinate

    Z value optional

  • Optionalheading?: number

    angle between 0 and 360 degree

  • Optionalpitch?: number

    angle between 0 and 360 degree

  • Optionalroll?: number

    angle between 0 and 360 degree