addImageLayerBelow method
Adds an 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,
{double? minzoom, double? maxzoom}) {
return _vietmapGLPlatform.addLayerBelow(
layerId, sourceId, imageSourceId, minzoom, maxzoom);
}