HeatmapLayer constructor

HeatmapLayer({
  1. required dynamic id,
  2. dynamic visibility,
  3. dynamic minZoom,
  4. dynamic maxZoom,
  5. required String sourceId,
  6. String? sourceLayer,
  7. int? heatmapColor,
  8. double? heatmapIntensity,
  9. double? heatmapOpacity,
  10. double? heatmapRadius,
  11. double? heatmapWeight,
})

Implementation

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