Skip to main content

Type Alias: RestoreCameraPosition()

RestoreCameraPosition = (customCameraPosition?) => Promise<void>

Function

Resets the camera to the default product view or a specified custom position.

This action returns the camera to its original position, providing a consistent starting point for viewing the product. It's like pressing a "reset view" button that clears any navigation or zoom adjustments made by the user.

Business value:

  • Creates a consistent baseline view for product presentations
  • Helps disoriented users quickly return to a standard product view
  • Ensures specific product features are properly highlighted in the default view
  • Supports guided tours that always begin from the same perspective

Parameters

customCameraPosition?

string

Optional JSON string defining a specific camera position

Returns

Promise<void>

Example

// Add a "reset view" button to your interface
document.getElementById('reset-view').addEventListener('click', () => {
window.mimeeqApp.actions.restoreCameraPosition();
});

// Jump to a specific predefined camera angle
window.mimeeqApp.actions.restoreCameraPosition(JSON.stringify({
position: {x: -1.5, y: 1.7, z: -5.2},
target: {x: 0, y: 0.6, z: 0}
}));