Joscha Eckert

Results 66 comments of Joscha Eckert

I find two things difficult to understand: - Your first series of screenshots was taken over ~2 minutes, the second series over ~1 mimute. Are these recorded for the same...

> A record type makes it easy to work with lat lon points across libraries without having a central "lat lon class" dependency. @mootw I understand the reasoning that if...

> Shouldn't the answer be: all? Just thinking out loud: if I have a point LatLng(42, 23) and I'm zoomed out so that we see N "versions" of that point,...

How about if we add an abstraction widget between the top level FlutterMap widget and the map layers, e.g. `FMWorld`. #### Scope of the FlutterMap widget: - keep track about...

> On web, when using mousedown-drag-mouseup to move the map, even a small distance (e.g. 20px) causes the map to move a far distance (e.g. 1 full window width). Can't...

Thanks a lot for the additional information and video. I added it to https://github.com/fleaflet/flutter_map/pull/1733. If you dont mind I'll ping you when the changes are implemented so that you can...

Expanded the issue tracker for all kind of bugs with the gesture system. All issues on this list need to be revalidated after the following is merged: - [ ]...

Example implementation of the new `InteractiveFlags` class ```dart @immutable class InteractiveFlags { const InteractiveFlags._({ required this.drag, required this.flingAnimation, required this.pinchMove, required this.pinchZoom, required this.doubleTapZoom, required this.doubleTapDragZoom, required this.scrollWheelZoom, required this.rotate,...

Currently blocked by: - [x] specify the scope of animations in flutter_map - [x] implement the specified animation logic to the map controller.

As far as I know, the tile layer checks if tiles need to be purged or loaded when a `MapEventWithMove` is emitted. move, rotate and so on all trigger a...