addSource method
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);
}
Add a new source to the map
Future<void> addSource(String sourceid, SourceProperties properties) async {
if (_disposed) {
return;
}
return await _nbMapsGlPlatform.addSource(sourceid, properties);
}