ArcGISMapView constructor

const ArcGISMapView({
  1. Key? key,
  2. required ArcGISMapViewController controllerProvider(),
  3. void onMapViewReady()?,
  4. void onTap(
    1. Offset localPosition
    )?,
  5. void onLongPressEnd(
    1. Offset localPosition
    )?,
})

Creates an ArcGIS map view.

Implementation

const ArcGISMapView({
  super.key,
  required this.controllerProvider,
  this.onMapViewReady,
  this.onTap,
  this.onLongPressEnd,
});