CircleLayer constructor

CircleLayer(
  1. {required String id,
  2. Visibility? visibility,
  3. double? minZoom,
  4. double? maxZoom,
  5. String? slot,
  6. required String sourceId,
  7. String? sourceLayer,
  8. double? circleSortKey,
  9. double? circleBlur,
  10. int? circleColor,
  11. double? circleEmissiveStrength,
  12. double? circleOpacity,
  13. CirclePitchAlignment? circlePitchAlignment,
  14. CirclePitchScale? circlePitchScale,
  15. double? circleRadius,
  16. int? circleStrokeColor,
  17. double? circleStrokeOpacity,
  18. double? circleStrokeWidth,
  19. List<double?>? circleTranslate,
  20. CircleTranslateAnchor? circleTranslateAnchor}
)

Implementation

CircleLayer({
  required String id,
  Visibility? visibility,
  double? minZoom,
  double? maxZoom,
  String? slot,
  required this.sourceId,
  this.sourceLayer,
  this.circleSortKey,
  this.circleBlur,
  this.circleColor,
  this.circleEmissiveStrength,
  this.circleOpacity,
  this.circlePitchAlignment,
  this.circlePitchScale,
  this.circleRadius,
  this.circleStrokeColor,
  this.circleStrokeOpacity,
  this.circleStrokeWidth,
  this.circleTranslate,
  this.circleTranslateAnchor,
}) : super(
          id: id,
          visibility: visibility,
          maxZoom: maxZoom,
          minZoom: minZoom,
          slot: slot);