HeatmapLayer constructor

HeatmapLayer(
  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? heatmapColor,
  9. double? heatmapIntensity,
  10. double? heatmapOpacity,
  11. double? heatmapRadius,
  12. double? heatmapWeight}
)

Implementation

HeatmapLayer({
  required String id,
  Visibility? visibility,
  double? minZoom,
  double? maxZoom,
  String? slot,
  required this.sourceId,
  this.sourceLayer,
  this.heatmapColor,
  this.heatmapIntensity,
  this.heatmapOpacity,
  this.heatmapRadius,
  this.heatmapWeight,
}) : super(
          id: id,
          visibility: visibility,
          maxZoom: maxZoom,
          minZoom: minZoom,
          slot: slot);