Skip to main content

Class: MapSharedCanvasSubLayer<P>

A sublayer of MapSharedCanvasLayer.

Type parameters

NameType
Pextends MapSharedCanvasSubLayerProps<any>

Hierarchy

Constructors

constructor

new MapSharedCanvasSubLayer<P>(props): MapSharedCanvasSubLayer<P>

Creates an instance of a DisplayComponent.

Type parameters

NameType
Pextends MapSharedCanvasSubLayerProps<any>

Parameters

NameTypeDescription
propsPThe propertis of the component.

Returns

MapSharedCanvasSubLayer<P>

Inherited from

DisplayComponent.constructor

Defined in

src/sdk/components/FSComponent.ts:73

Properties

context

Optional context: [] = undefined

The context on this component, if any.

Inherited from

DisplayComponent.context

Defined in

src/sdk/components/FSComponent.ts:64


contextType

Optional Readonly contextType: readonly [] = undefined

The type of context for this component, if any.

Inherited from

DisplayComponent.contextType

Defined in

src/sdk/components/FSComponent.ts:67


props

props: P & ComponentProps

The properties of the component.

Inherited from

DisplayComponent.props

Defined in

src/sdk/components/FSComponent.ts:61

Accessors

display

get display(): MapSharedCanvasInstance

This sublayer's shared canvas instance.

Returns

MapSharedCanvasInstance

Throws

Error if this sublayer is not attached.

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:196


projection

get projection(): MapProjection

This sublayer's map projection.

Returns

MapProjection

Throws

Error if this sublayer is not attached.

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:183

Methods

attach

attach(projection, display): void

Attaches this sublayer to a parent layer.

Parameters

NameTypeDescription
projectionMapProjectionThe map projection used by this sublayer.
displayMapSharedCanvasInstanceThe canvas instance shared by this sublayer.

Returns

void

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:225


destroy

destroy(): void

Destroys this component.

Returns

void

Inherited from

DisplayComponent.destroy

Defined in

src/sdk/components/FSComponent.ts:98


getContext

getContext(context): never

Gets a context data subscription from the context collection.

Parameters

NameTypeDescription
contextneverThe context to get the subscription for.

Returns

never

The requested context.

Throws

An error if no data for the specified context type could be found.

Inherited from

DisplayComponent.getContext

Defined in

src/sdk/components/FSComponent.ts:106


isAttached

isAttached(): boolean

Checks whether this sublayer is attached to a parent layer.

Returns

boolean

Whether this sublayer is attached to a parent layer.

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:208


isVisible

isVisible(): boolean

Checks whether this sublayer is visible.

Returns

boolean

Whether this sublayer is visible.

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:216


onAfterRender

onAfterRender(node): void

A callback that is called after the component is rendered.

Parameters

NameTypeDescription
nodeVNodeThe component's VNode.

Returns

void

Inherited from

DisplayComponent.onAfterRender

Defined in

src/sdk/components/FSComponent.ts:87


onAttached

onAttached(): void

This method is called when this sublayer is attached to its parent layer.

Returns

void

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:263


onBeforeRender

onBeforeRender(): void

A callback that is called before the component is rendered.

Returns

void

Inherited from

DisplayComponent.onBeforeRender

Defined in

src/sdk/components/FSComponent.ts:80


onMapProjectionChanged

onMapProjectionChanged(projection, changeFlags): void

This method is called when this sublayer's map projection changes.

Parameters

NameTypeDescription
projectionMapProjectionThis sublayer's map projection.
changeFlagsnumberThe types of changes made to the projection.

Returns

void

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:287


onSleep

onSleep(): void

This method is called when this sublayer's parent layer is put to sleep.

Returns

void

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:277


onUpdated

onUpdated(time, elapsed): void

This method is called once every update cycle after this sublayer's shared canvas instance has had a chance to be invalidated.

Parameters

NameTypeDescription
timenumberThe current time as a UNIX timestamp in milliseconds.
elapsednumberThe elapsed time, in milliseconds, since the last update.

Returns

void

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:310


onVisibilityChanged

onVisibilityChanged(isVisible): void

This method is called when this layer's visibility changes.

Parameters

NameTypeDescription
isVisiblebooleanWhether the layer is now visible.

Returns

void

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:256


onWake

onWake(): void

This method is called when this sublayer's parent layer is awakened.

Returns

void

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:270


render

render(): null | VNode

Renders the component.

Returns

null | VNode

A JSX element to be rendered.

Overrides

DisplayComponent.render

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:315


setVisible

setVisible(val): void

Sets this sublayer's visibility.

Parameters

NameTypeDescription
valbooleanWhether this sublayer should be visible.

Returns

void

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:240


shouldInvalidate

shouldInvalidate(time, elapsed): boolean

This method is called at the beginning of every update cycle to check whether this sublayer's shared canvas instance should be invalidated. If the canvas is already invalidated, then this method will not be called.

Parameters

NameTypeDescription
timenumberThe current time as a UNIX timestamp in milliseconds.
elapsednumberThe elapsed time, in milliseconds, since the last update.

Returns

boolean

Whether this sublayer's shared canvas instance should be invalidated.

Defined in

src/sdk/components/map/layers/MapSharedCanvasLayer.tsx:299