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