MapViewRenderInfo constructor

MapViewRenderInfo({
  1. required ViewDataTransitionStatus dataTransitionStatus,
  2. required ViewCameraTransitionStatus cameraTransitionStatus,
  3. required PolygonGeographicArea polygonArea,
  4. required List<int> markersIds,
  5. required List<int> sourcesIds,
})

Creates a MapViewRenderInfo instance.

Use this constructor to construct a render-info snapshot that describes what the map rendered during a single view cycle.

Parameters

  • dataTransitionStatus: (ViewDataTransitionStatus) The status of data transitions for the view.
  • cameraTransitionStatus: (ViewCameraTransitionStatus) The status of camera transitions for the view.
  • polygonArea: (PolygonGeographicArea) The polygonal geographic area visible in the view.
  • markersIds: (List<int>) IDs of markers that were rendered during this view.
  • sourcesIds: (List<int>) IDs of sources that were rendered during this view.

Implementation

MapViewRenderInfo({
  required this.dataTransitionStatus,
  required this.cameraTransitionStatus,
  required this.polygonArea,
  required this.markersIds,
  required this.sourcesIds,
});