addSymbolLayer method
Future<void>
addSymbolLayer(
- 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> addSymbolLayer(
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, "symbol",
belowLayerId: belowLayerId,
sourceLayer: sourceLayer,
minzoom: minzoom,
maxzoom: maxzoom,
filter: filter,
enableInteraction: enableInteraction);
}