HillshadeLayer constructor

HillshadeLayer(
  1. {required String id,
  2. Visibility? visibility,
  3. double? minZoom,
  4. double? maxZoom,
  5. String? slot,
  6. required String sourceId,
  7. String? sourceLayer,
  8. int? hillshadeAccentColor,
  9. double? hillshadeEmissiveStrength,
  10. double? hillshadeExaggeration,
  11. int? hillshadeHighlightColor,
  12. HillshadeIlluminationAnchor? hillshadeIlluminationAnchor,
  13. double? hillshadeIlluminationDirection,
  14. int? hillshadeShadowColor}
)

Implementation

HillshadeLayer({
  required String id,
  Visibility? visibility,
  double? minZoom,
  double? maxZoom,
  String? slot,
  required this.sourceId,
  this.sourceLayer,
  this.hillshadeAccentColor,
  this.hillshadeEmissiveStrength,
  this.hillshadeExaggeration,
  this.hillshadeHighlightColor,
  this.hillshadeIlluminationAnchor,
  this.hillshadeIlluminationDirection,
  this.hillshadeShadowColor,
}) : super(
          id: id,
          visibility: visibility,
          maxZoom: maxZoom,
          minZoom: minZoom,
          slot: slot);