Class: KeyZoomHandler
component.KeyZoomHandler
The KeyZoomHandler
allows the user to zoom in and out using the
following key commands:
+
: Zoom in.
-
: Zoom out.
example
var keyboardComponent = viewer.getComponent("keyboard");
keyboardComponent.keyZoom.disable();keyboardComponent.keyZoom.enable();
var isEnabled = keyboardComponent.keyZoom.isEnabled;
#
HierarchyHandlerBase
<KeyboardConfiguration
>↳
KeyZoomHandler
#
Accessors#
isEnabled• get
isEnabled(): boolean
Returns a Boolean indicating whether the interaction is enabled.
#
Returnsboolean
true
if the interaction is enabled.
#
Defined incomponent/util/HandlerBase.ts:31
#
Methods#
disableâ–¸ disable(): void
Disables the interaction.
example
<component-name>.<handler-name>.disable();
#
Returnsvoid
#
Inherited fromHandlerBase.disable
#
Defined incomponent/util/HandlerBase.ts:60
#
enableâ–¸ enable(): void
Enables the interaction.
example
<component-name>.<handler-name>.enable();
#
Returnsvoid
#
Inherited fromHandlerBase.enable