-
Notifications
You must be signed in to change notification settings - Fork 544
Closed
Labels
Description
Hello everybody,
First of all thank you for this amazing plugin.
However, I have a performance issue that ruins the entire user experience: the map panning is lagging and extremely slow. So I cloned the project to find the cause and I realized that everything was corrected when I only commented the following lines:
enableLineManager(style);
enableSymbolManager(style);
enableCircleManager(style);
enableFillManager(style);
// enableLineManager(style);
// enableSymbolManager(style);
// enableCircleManager(style);
// enableFillManager(style);
For information, this issue occurred on application started, without adding any symbol or other annotation. I tested on several devices and emulators, the problem appears every time. Another thing, I tried to create a native android project and I have NO performance issues on it, only with this flutter plugin.
Does somebody have an idea?
Thank you very much !!

