Skip to content

Overlay

Namespace: ThinkGeo.UI.Blazor

Represents the base class for Overlay.

public abstract class Overlay : Microsoft.AspNetCore.Components.ComponentBase, Microsoft.AspNetCore.Components.IComponent, Microsoft.AspNetCore.Components.IHandleEvent, Microsoft.AspNetCore.Components.IHandleAfterRender

Inheritance Object → ComponentBase → Overlay
Implements IComponent, IHandleEvent, IHandleAfterRender

Properties

Id

Gets or sets Id.

public string Id { get; set; }

Property Value

String

IsVisible

Indicating whether the overlay is visible or not. Defaults to true.

public bool IsVisible { get; set; }

Property Value

Boolean

Methods

RedrawAsync()

Redraw overlay.

public Task RedrawAsync()

Returns

Task

InitAsync()

Initializes overlay, it is called automatically while map is initializing.

protected internal Task InitAsync()

Returns

Task

ReleaseAsync()

Release the resource.

protected internal Task ReleaseAsync()

Returns

Task

OnAfterRenderAsync(Boolean)

protected Task OnAfterRenderAsync(bool firstRender)

Parameters

firstRender Boolean

Returns

Task