We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
web
0.20.0
It seem to be impossible to delete a source on web.
Source is deleted
Source isn't deleted
Future<void>? refreshClusteredPointSource(String sourceId, Object? data, bool delete) async { if (delete) { debugPrint("DELETING SOURCE"); try { await mapController!.removeSource(sourceId); } catch (e) { debugPrint("error removing source : $e"); } debugPrint("DELETING SOURCE END"); } debugPrint("ADDING SOURCE"); await mapController!.addSource(sourceId, GeojsonSourceProperties(data: data, cluster: true, clusterMaxZoom: 12, clusterRadius: 50)); debugPrint("ADDING SOURCE END"); }
DELETING SOURCE null DELETING SOURCE END ADDING SOURCE Error: Source "markers_source" already exists.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Platforms
web
Version of flutter maplibre_gl
0.20.0
Bug Description
It seem to be impossible to delete a source on web.
Steps to Reproduce
Expected Results
Source is deleted
Actual Results
Source isn't deleted
Code Sample
Console
The text was updated successfully, but these errors were encountered: