RENDER_FRAME_FINISHED constant Null safety

String const RENDER_FRAME_FINISHED

The map finished rendering a frame. The render-mode property tells whether the map has all data (full) required to render the visible viewport. The needs-repaint property provides information about ongoing transitions that trigger map repaint. The placement-changed property tells if the symbol placement has been changed in the visible viewport.

Event data format (Object):
.
├── render-mode - String ("partial" | "full")
├── needs-repaint - Boolean
└── placement-changed - Boolean

Implementation

static const String RENDER_FRAME_FINISHED = "render-frame-finished";