ArcGISMapView constructor

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

      Creates an ArcGIS map view.

      Implementation

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