addSource method

Future<void> addSource(
  1. String sourceid,
  2. SourceProperties properties
)

Add a new source to the map

Implementation

Future<void> addSource(String sourceid, SourceProperties properties) async {
  if (_disposed) {
    return;
  }
  return await _nbMapsGlPlatform.addSource(sourceid, properties);
}