addImageLayerBelow method

Future<void> addImageLayerBelow(
  1. String layerId,
  2. String sourceId,
  3. String imageSourceId
)

Adds a Mapbox image layer below the layer provided with belowLayerId to the map's style at render time.

Implementation

Future<void> addImageLayerBelow(
    String layerId, String sourceId, String imageSourceId) {
  return _mapboxGlPlatform.addLayerBelow(layerId, sourceId, imageSourceId);
}