Class: RenderContext

RenderContext()

A render context of a mapper into a specific element. Handles keeping the UI connected to an element on a page. See Mapper.render() for instantiation. Call disconnect() on a render context once the element is no longer being used for a specific Mapper to close event listeners.

Constructor

new RenderContext()

Construct the render context for the specified mapper in a specific parent element. Will set up event listeners and build the initial UI.
Source:

Methods

disconnect()

Disconnect the render context from the page and clean up listeners.
Source:

(async) getCursorAltitude() → {number}

Get the altitude of the map object pointed to by the cursor at the point pointed to.
Source:
Returns:
The Z coordinate of that point on the map.
Type
number

(async) getDrawnNodePartAtCanvasPoint(point, layer) → {part|null}

Get the node drawn at a specific canvas point in the specified layer.
Parameters:
Name Type Description
point Vector3
layer Layer
Source:
Returns:
Type
part | null

recalculateSize()

Recalculate the UI size based on the parent. This requires a full redraw.
Source:

(async) redraw()

Completely redraw the displayed UI.
Source:

zoomFactor(zoom) → {number}

Get the zoom factor based on a specific zoom level.
Parameters:
Name Type Description
zoom number
Source:
Returns:
Zoom factor, multiply number of pixels by this factor to get map units.
Type
number