addFillLayer method

  1. @override
Future<void> addFillLayer(
  1. String sourceId,
  2. String layerId,
  3. Map<String, dynamic> properties, {
  4. String? belowLayerId,
  5. String? sourceLayer,
  6. double? minzoom,
  7. double? maxzoom,
  8. dynamic filter,
  9. required bool enableInteraction,
})
override

Implementation

@override
Future<void> addFillLayer(
    String sourceId, String layerId, Map<String, dynamic> properties,
    {String? belowLayerId,
    String? sourceLayer,
    double? minzoom,
    double? maxzoom,
    dynamic filter,
    required bool enableInteraction}) async {
  return _addLayer(sourceId, layerId, properties, "fill",
      belowLayerId: belowLayerId,
      sourceLayer: sourceLayer,
      minzoom: minzoom,
      maxzoom: maxzoom,
      filter: filter,
      enableInteraction: enableInteraction);
}