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