HeatmapLayer constructor

HeatmapLayer(
  1. {required dynamic id,
  2. dynamic visibility,
  3. dynamic minZoom,
  4. dynamic maxZoom,
  5. dynamic 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 id,
  visibility,
  minZoom,
  maxZoom,
  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);