HeatmapLayer constructor
HeatmapLayer(- {required String id,
- Visibility? visibility,
- double? minZoom,
- double? maxZoom,
- String? slot,
- required String sourceId,
- String? sourceLayer,
- int? heatmapColor,
- double? heatmapIntensity,
- double? heatmapOpacity,
- double? heatmapRadius,
- 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);