You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, after updating Flutter Map to 0.13.1 when I set polygonCulling to true in PolygonLayerOptions I'm receiving LateInitializationError: Field 'boundingBox' has already been initialized, everything is working fine with polygonCulling set to false
The text was updated successfully, but these errors were encountered:
It is because it is trying to set boundingBox, which is final. You may try to make it not final. But in case of polylines culling doesn't seem to work after doing so.
Hi, after updating Flutter Map to 0.13.1 when I set polygonCulling to true in PolygonLayerOptions I'm receiving
LateInitializationError: Field 'boundingBox' has already been initialized
, everything is working fine with polygonCulling set to falseThe text was updated successfully, but these errors were encountered: