addFillExtrusionLayer method

  1. @override
Future<void> addFillExtrusionLayer(
  1. String sourceId,
  2. String layerId,
  3. FillExtrusionLayerProperties 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> addFillExtrusionLayer(
    String sourceId, String layerId, FillExtrusionLayerProperties properties,
    {String? belowLayerId,
    String? sourceLayer,
    double? minzoom,
    double? maxzoom,
    dynamic filter,
    bool enableInteraction = true}) {
  return _controller.addFillExtrusionLayer(sourceId, layerId, properties,
      belowLayerId: belowLayerId,
      sourceLayer: sourceLayer,
      minzoom: minzoom,
      maxzoom: maxzoom,
      filter: filter);
}