NGroundOverlay constructor

NGroundOverlay({
  1. required String id,
  2. required NLatLngBounds bounds,
  3. required NOverlayImage image,
  4. double alpha = 1.0,
})

Implementation

NGroundOverlay({
  required super.id,
  required NLatLngBounds bounds,
  required NOverlayImage image,
  double alpha = 1.0,
})  : _bounds = bounds,
      _image = image,
      _alpha = alpha,
      super(type: NOverlayType.groundOverlay);