Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • VertexViewer

Index

Properties

annotations: undefined | AnnotationController

The annotation controller for accessing annotations associated with the scene view.

readonly
cameraControls: boolean

Enables or disables the default mouse and touch interactions provided by the viewer. Enabled by default.

cameraType: FrameCameraType

The type of camera model to represent the scene with. Can be either perspective or orthographic, and defaults to perspective.

clientId?: string

The Client ID associated with your Vertex Application.

config?: string | Config

An object or JSON encoded string that defines configuration settings for the viewer.

configEnv: Environment

Sets the default environment for the viewer. This setting is used for auto-configuring network hosts.

Use the config property for manually setting hosts.

see

Viewer.config

depthBuffers?: FrameType

Specifies when a depth buffer is requested from rendering. Possible values are: * undefined: A depth buffer is never requested.

  • final: A depth buffer is only requested on the final frame.

  • all: A depth buffer is requested for every frame.

Depth buffers can increase the amount of data that's sent to a client and can impact rendering performance. Values of undefined or final should be used when needing the highest rendering performance.

enableTemporalRefinement: boolean

Specifies whether to enable temporal refinement of still images.

featureHighlighting?: FeatureHighlightOptions

Specifies how selected features should be highlighted.

featureLines?: FeatureLineOptions

Specifies if and how to render feature lines.

featureMaps?: FrameType

Specifies when a feature map is returned from rendering. Feature maps include information about the surfaces, edges and cross sections that are in a frame.

Possible values are: * undefined: A feature map is never requested.

  • final: A feature map is only requested on the final frame.

  • all: A feature map is requested for every frame.

Feature maps can increase the amount of data that's sent to a client and can impact rendering performance. Values of undefined or final should be used when needing the highest rendering performance.

frame: undefined | ReceivedFrame

The last frame that was received, which can be used to inspect the scene and camera information.

readonly
keyboardControls: boolean

Enables or disables the default keyboard shortcut interactions provided by the viewer. Enabled by default, requires cameraControls being enabled.

modelViews: undefined | ModelViewController

The controller for accessing model views associated with the scene view.

readonly
noDefaultLights: boolean

Specifies whether to use the default lights for the scene. When false, default lights are used. When true, no default lights are used, and the lights must be specified separately.

phantom?: PhantomOptions

Specifies how phantom parts should appear. The opacity must be between 0 and 1, where 0 is completely hidden and 1 is completely visible.

pmi: undefined | PmiController

The controller for accessing and viewing PMI.

readonly
resizeDebounce: number

An optional value that will debounce frame updates when resizing this viewer element.

resolvedConfig?: Config
rotateAroundTapPoint: boolean

Enables or disables the default rotation interaction being changed to rotate around the pointer down location.

sceneComparison?: SceneComparisonOptions

Specifies if and how to compare to another scene

selectionHighlighting?: SelectionHighlightingOptions

Specifies the halo selection properties. Parameter notes:

  • lineWidth values supported currently are 0-5. This width is currently the value x2. For example, 1 will have a pixel width of 2.

  • color is optional. This will be the color of the selected items in the viewer.

  • opacity is also optional. The opacity will be applied to everything selected besides the highlighted outer line.

src?: string

A URN of the scene resource to load when the component is mounted in the DOM tree. The specified resource is a URN in the following format: * urn:vertex:scene:<sceneid>

stencilBuffer: StencilBufferManager
stream?: ViewerStream
token?: string

A token that can be used to make API calls to other Vertex services.

viewport: Viewport

Represents the current viewport of the viewer. The viewport represents the dimensions of the canvas where a frame is rendered. It contains methods for translating between viewport coordinates, frame coordinates and world coordinates.

Methods

  • addCursor(cursor: Cursor, priority?: number): Promise<Disposable>
  • Adds a cursor to the viewer, and displays it if the cursor has the highest priority.

    Cursors are managed as a prioritized list. A cursor is displayed if it has the highest priority or if the cursor is the most recently added cursor in the set of cursors with the same priority.

    To remove a cursor, call dispose() on the returned disposable.

    see

    See CursorManager for constants to pass to priority.

    Parameters

    • cursor: Cursor

      The cursor to add.

    • Optional priority: number

      The priority of the cursor.

    Returns Promise<Disposable>

    A disposable that can be used to remove the cursor.

  • getBaseInteractionHandler(): Promise<undefined | BaseInteractionHandler>
  • getInteractionTarget_DEPRECATED(): Promise<HTMLElement>
  • The HTML element that will handle interaction events from the user. Used by components to listen for interaction events from the same element as the viewer. Note, this property maybe removed in the future when refactoring our interaction handling.

    deprecated

    Use InteractionHandler.

    Returns Promise<HTMLElement>

  • getJwt(): Promise<undefined | string>
  • isSceneReady(): Promise<boolean>
  • load(urn: string): Promise<void>
  • Loads the given scene into the viewer and return a Promise that resolves when the scene has been loaded. The specified scene is provided as a URN in the following format: * urn:vertex:scene:<sceneid>

    Parameters

    • urn: string

      The URN of the resource to load.

    Returns Promise<void>

  • Registers and initializes an interaction handler with the viewer. Returns a Disposable that should be used to deregister the interaction handler.

    InteractionHandlers are used to build custom mouse and touch interactions for the viewer. Use <vertex-viewer camera-controls="false" /> to disable the default camera controls provided by the viewer.

    example
    class CustomInteractionHandler extends InteractionHandler {
    private element: HTMLElement;
    private api: InteractionApi;
    public dispose(): void {
    this.element.removeEventListener('click', this.handleElementClick);
    }
    public initialize(element: HTMLElement, api: InteractionApi): void {
    this.api = api;
    this.element = element;
    this.element.addEventListener('click', this.handleElementClick);
    }
    private handleElementClick = (event: MouseEvent) => {
    api.tap({ x: event.clientX, y: event.clientY });
    };
    }
    const viewer = document.querySelector('vertex-viewer');
    viewer.registerInteractionHandler(new CustomInteractionHandler());

    Parameters

    Returns Promise<Disposable>

    A promise containing the disposable to use to deregister the handler.

  • Registers a key interaction to be invoked when a specific set of keys are pressed during a tap event.

    KeyInteractions are used to build custom keyboard shortcuts for the viewer using the current state of they keyboard to determine whether the fn should be invoked. Use <vertex-viewer keyboard-controls="false" /> to disable the default keyboard shortcuts provided by the viewer.

    example
    class CustomKeyboardInteraction extends KeyInteraction<TapEventDetails> {
    constructor(private viewer: HTMLVertexViewerElement) {}
    public predicate(keyState: KeyState): boolean {
    return keyState['Alt'];
    }
    public async fn(event: TapEventDetails) {
    const scene = await this.viewer.scene();
    const result = await scene.raycaster().hitItems(event.position);
    if (result.hits.length > 0) {
    await scene
    .camera()
    .fitTo((q) => q.withItemId(result.hits[0].itemId))
    .render();
    }
    }
    }

    Parameters

    Returns Promise<void>

  • Returns an object that is used to perform operations on the Scene that's currently being viewed. These operations include updating items, positioning the camera and performing hit tests.

    Returns Promise<Scene>

  • unload(): Promise<void>