grid property

Grid? grid

A coordinate system grid to display on top of the GeoViewController.

The Grid is a collection of horizontal and vertical lines which can be rendered over the top of a GeoViewController to help show the location of the current Viewpoint. Supported grids include Military Grid Reference System (MgrsGrid), United States National Grid (UsngGrid), Universal Transverse Mercator (UtmGrid), and a grid of latitude and longitude lines (LatitudeLongitudeGrid). You can configure these grids by toggling their visibility and modifying their default layout and appearance. A grid will not display in the GeoViewController until an ArcGISMapViewController.arcGISMap or SceneView.scene have been loaded.

The default value is null.

Implementation

Grid? get grid => _grid.value;
void grid=(Grid? value)

Implementation

set grid(Grid? value) => _grid.value = value;