Supports semantic zoom functionality by exposing a control as either the zoomed in or the zoomed out view of the SemanticZoom control.
Initiates semantic zoom on the custom control.
Initializes the semantic zoom state for the custom control.
True if this is the zoomed out view; otherwise false.
True if this is the current view; otherwise false.
The function that manages semantic zoom behavior. Triggers a zoom in or zoom out if the control is the visible control.
The number of pages of content to pre-fetch for zooming. This value is dependent on the size of the semantic zoom container. More content can be displayed based on the zoom factor and the size of the container.
Terminates semantic zoom on the zoomed in or zoomed out child of the custom control.
True if the control is the visible control; otherwise false.
Retrieves the current item of the zoomed in or zoomed out child of the custom control.
An object that represents the selected item. This return value must be a Promise for the following: item, position.
Retrieves the panning axis of the zoomed-in or zoomed-out child of the custom control.
string
Identifies the panning axis of the child control. Implementation specific.
Manages pointer input for the custom control.
The ID of the pointer.
Positions the specified item within the viewport of the child control when panning or zooming begins.
The object to position within the viewport of the child control. item can be a number, a string, or an object with any number of properties.
An object that contains the position data of the item relative to the child control. position must be an object with four number properties: left, top, width, and height. These values specify a rectangle that is typically the bounding box of the current item, though the details are up to the control. The units of the position must be in pixels. And the coordinates must be relative to the top-left of the control viewport (which should occupy the same area as the semantic zoom viewport), except when in RTL mode. In RTL mode, return coordinates relative to the top-right off the control viewport. The rectangle is transformed from the coordinate system of one control to that of the other.
Selects the item closest to the specified screen coordinates.
The x-coordinate in DIPs relative to the upper-left corner of the SemanticZoom viewport.
The y-coordinate in DIPs relative to the upper-left corner of the SemanticZoom viewport..