Interface UseMapGLResult

Implemented by objects that return information about a Mapbox Map instance.

interface UseMapGLResult {
    mapGL: Map;
    ready: boolean;
}

Properties

Properties

mapGL: Map

The Map instance used in a <RemapGL> component.

ready: boolean

Will be true when the map has finished loading, including the CSS file, and can be manipulated.