MapboxMap constructor

MapboxMap(
  1. {required _MapboxMapsPlatform mapboxMapsPlatform,
  2. OnMapTapListener? onMapTapListener,
  3. OnMapLongTapListener? onMapLongTapListener,
  4. OnMapScrollListener? onMapScrollListener}
)

Implementation

MapboxMap({
  required _MapboxMapsPlatform mapboxMapsPlatform,
  this.onMapTapListener,
  this.onMapLongTapListener,
  this.onMapScrollListener,
}) : _mapboxMapsPlatform = mapboxMapsPlatform {
  _proxyBinaryMessenger = _mapboxMapsPlatform.binaryMessenger;

  annotations = _AnnotationManager(mapboxMapsPlatform: _mapboxMapsPlatform);
  _setupGestures();
}