addRasterLayer method

  1. @override
Future<void> addRasterLayer(
  1. String sourceId,
  2. String layerId,
  3. RasterLayerProperties properties, {
  4. String? belowLayerId,
  5. String? sourceLayer,
  6. double? minzoom,
  7. double? maxzoom,
})
override

Implementation

@override
Future<void> addRasterLayer(
    String sourceId, String layerId, RasterLayerProperties properties,
    {String? belowLayerId,
    String? sourceLayer,
    double? minzoom,
    double? maxzoom}) {
  return _controller.addRasterLayer(sourceId, layerId, properties,
      belowLayerId: belowLayerId,
      sourceLayer: sourceLayer,
      minzoom: minzoom,
      maxzoom: maxzoom);
}