Type Alias: IncreaseZoom()
IncreaseZoom = (
step
?) =>Promise
<void
>
Function
Increases the camera zoom level to see finer details of the product.
This action brings the camera closer to the product, revealing intricate details and textures. It's perfect for examining specific features, materials, finishes, or connection points that might not be visible from a distance.
Business value:
- Showcases craftsmanship and quality details that differentiate premium products
- Helps customers inspect important functional features before purchase
- Allows salespeople to highlight specific selling points during presentations
Parameters
step?
number
How much to zoom in - larger values create a more dramatic change (optional)
Returns
Promise
<void
>
Promise that resolves when the zoom operation is complete
Example
// Add a "zoom in" button to focus on product details
document.getElementById('zoom-in-button').addEventListener('click', () => {
window.mimeeqApp.actions.increaseZoom();
});
// Zoom in more dramatically to focus on a specific detail
window.mimeeqApp.actions.increaseZoom(1.5);