addCircleLayer method
Future<void>
addCircleLayer(
- String sourceId,
- String layerId,
- Map<
String, dynamic> properties, { - String? belowLayerId,
- String? sourceLayer,
- double? minzoom,
- double? maxzoom,
- dynamic filter,
- required bool enableInteraction,
override
Implementation
@override
Future<void> addCircleLayer(
String sourceId, String layerId, Map<String, dynamic> properties,
{String? belowLayerId,
String? sourceLayer,
double? minzoom,
double? maxzoom,
dynamic filter,
required bool enableInteraction}) async {
return _addLayer(sourceId, layerId, properties, "circle",
belowLayerId: belowLayerId,
sourceLayer: sourceLayer,
minzoom: minzoom,
maxzoom: maxzoom,
filter: filter,
enableInteraction: enableInteraction);
}