Luka S

Results 438 comments of Luka S

If animations were causing the issue, that suggests it could be frequent rebuilding that's the issue.

@palicka Can you try moving the `CancellableNetworkTileProvider()` into a variable instantiated outside of the `build` method? Something like `final ctp = ...;`, then just `tileProvider: ctp`.

I'm going to close this for now, as there are too many factors here. Occasionally I run into similar slow loading, but I'm not convinced it's flutter_map's fault: on these...

This needs re-triage after #1860 was merged.

The issue seems to occur because `CameraConstraint.constrain` returns `null` for some reason. Therefore, the new camera, and the constrained new camera don't match. > May return null if no appropriate...

The issue can be tracked back to the initial implementation in 2c60d63b48d0a5d77305b4e00dae8f981549260a/#1551. It only occurs with `contain` - although it seems to happen in multiple other `MapOptions` configurations. Here's some...

The issue also occurs in the following configuration, assuming the constraint is always constrained to the same bounds as the initial fit: ![image](https://github.com/fleaflet/flutter_map/assets/58115698/5f64f7c0-0aca-4f4c-bc14-5eadcff05671) but doesn't occur when using `insideBounds`. @rorystephenson...

I think what @jetpeter has found is a part of a much larger issue in that we treat the `initialCameraFit` somewhat seperately to how we treat `initialCenter` and `initialZoom`, and,...