BackgroundLayer constructor

BackgroundLayer({
  1. required String id,
  2. Visibility? visibility,
  3. List<Object>? visibilityExpression,
  4. List<Object>? filter,
  5. double? minZoom,
  6. double? maxZoom,
  7. String? slot,
  8. int? backgroundColor,
  9. List<Object>? backgroundColorExpression,
  10. double? backgroundEmissiveStrength,
  11. List<Object>? backgroundEmissiveStrengthExpression,
  12. double? backgroundOpacity,
  13. List<Object>? backgroundOpacityExpression,
  14. String? backgroundPattern,
  15. List<Object>? backgroundPatternExpression,
  16. BackgroundPitchAlignment? backgroundPitchAlignment,
  17. List<Object>? backgroundPitchAlignmentExpression,
})

Implementation

BackgroundLayer({
  required super.id,
  super.visibility,
  super.visibilityExpression,
  super.filter,
  super.minZoom,
  super.maxZoom,
  super.slot,

  this.backgroundColor,
  this.backgroundColorExpression,
  this.backgroundEmissiveStrength,
  this.backgroundEmissiveStrengthExpression,
  this.backgroundOpacity,
  this.backgroundOpacityExpression,
  this.backgroundPattern,
  this.backgroundPatternExpression,
  this.backgroundPitchAlignment,
  this.backgroundPitchAlignmentExpression,
});