OverviewMap constructor

const OverviewMap({
  1. required GeoViewController controllerProvider(),
  2. Key? key,
  3. Alignment alignment = Alignment.topRight,
  4. EdgeInsets padding = const EdgeInsets.all(10),
  5. double scaleFactor = 25,
  6. ArcGISSymbol? symbol,
  7. ArcGISMap? map,
  8. Widget containerBuilder(
    1. BuildContext context,
    2. Widget child
    )?,
})

Create an OverviewMap widget.

Implementation

const OverviewMap({
  required this.controllerProvider,
  super.key,
  this.alignment = Alignment.topRight,
  this.padding = const EdgeInsets.all(10),
  this.scaleFactor = 25,
  this.symbol,
  this.map,
  this.containerBuilder,
});