HeatmapLayer constructor

HeatmapLayer({
  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. required String sourceId,
  9. String? sourceLayer,
  10. int? heatmapColor,
  11. List<Object>? heatmapColorExpression,
  12. double? heatmapIntensity,
  13. List<Object>? heatmapIntensityExpression,
  14. double? heatmapOpacity,
  15. List<Object>? heatmapOpacityExpression,
  16. double? heatmapRadius,
  17. List<Object>? heatmapRadiusExpression,
  18. double? heatmapWeight,
  19. List<Object>? heatmapWeightExpression,
})

Implementation

HeatmapLayer({
  required super.id,
  super.visibility,
  super.visibilityExpression,
  super.filter,
  super.minZoom,
  super.maxZoom,
  super.slot,
  required this.sourceId,
  this.sourceLayer,

  this.heatmapColor,
  this.heatmapColorExpression,
  this.heatmapIntensity,
  this.heatmapIntensityExpression,
  this.heatmapOpacity,
  this.heatmapOpacityExpression,
  this.heatmapRadius,
  this.heatmapRadiusExpression,
  this.heatmapWeight,
  this.heatmapWeightExpression,
});