addFillLayer method

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

Implementation

@override
Future<void> addFillLayer(
    String sourceId, String layerId, FillLayerProperties properties,
    {String? belowLayerId,
    String? sourceLayer,
    double? minzoom,
    double? maxzoom,
    dynamic filter,
    bool enableInteraction = true}) {
  return _controller.addFillLayer(sourceId, layerId, properties,
      belowLayerId: belowLayerId,
      sourceLayer: sourceLayer,
      minzoom: minzoom,
      maxzoom: maxzoom,
      filter: filter);
}