geoModel property
The associated GeoModel. This is either an ArcGISMap or ArcGISScene.
Associate a GeoModel with the BasemapGalleryController to automatically apply the selected basemap to the map or scene.
If the GeoModel is not loaded when set, it will be loaded by the BasemapGalleryController.
Implementation
GeoModel? get geoModel => _geoModel;
Implementation
set geoModel(GeoModel? value) {
_geoModel = value;
_initFromGeoModel();
}