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.
Methods
disconnect()
Disconnect the render context from the page and clean up listeners.
(async) getCursorAltitude() → {number}
Get the altitude of the map object pointed to by the cursor at the point pointed to.
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 |
Returns:
- Type
- part | null
recalculateSize()
Recalculate the UI size based on the parent.
This requires a full redraw.
(async) redraw()
Completely redraw the displayed UI.
zoomFactor(zoom) → {number}
Get the zoom factor based on a specific zoom level.
Parameters:
Name | Type | Description |
---|---|---|
zoom |
number |
Returns:
Zoom factor, multiply number of pixels by this factor to get map units.
- Type
- number