arcGISMap property

ArcGISMap? arcGISMap

The map that the ArcGISMapViewController is displaying.

If you assign an ArcGISMap to an ArcGISMapViewController, the map, its Basemap, and collection of operational layers automatically start to load. When loading completes, the layers and basemap are rendered in the map view.

To validate the content of a map before you display it, call GeoModel.load to load the ArcGISMap into your app before you assign it to an ArcGISMapViewController.

Implementation

ArcGISMap? get arcGISMap => _arcGISMap.value;
void arcGISMap=(ArcGISMap? value)

Implementation

set arcGISMap(ArcGISMap? value) => _arcGISMap.value = value;