Ian
Ian
A plugin maybe a good way to 1) get it out there and tested for bugs :), 2) get some others familiar with it, so that if ever needed it's...
Who needs in code comments when you have https://www.win.tue.nl/~vanwijk/zoompan.pdf#page=5 /me runs off
Interesting, I had look at this with my vector tiles last time. Go as far drawing the perspective fine, but never got around looking at adapting the guestures, so it...
It should be possible to do that I think. I had a dabble some time ago with the vector stuff...here was an example https://www.youtube.com/shorts/RBU3xjVPCmY this is on canvas, so not...
I dug this out from my old emails...not sure if this is useful at all for the perspective on a Widget. ```dart Transform( transform: Matrix4( 1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1, )..setEntry(3,...
You could probably just call mapController move with a 0.00001 different value instead of setState or something I would imagine (I feel like we should be able to force a...
Can you paste a minimal example others can run (i.e _baseBuildMap etc is all missing)
Out of interest, what happens if you call setState on the widget flutter_map is in ?
Interesting, and good spot. I'm a bit baffled on this one. I can see the polyline rebuild paint get called each time (and interestingly paint gets called several tiles, even...
Looks a bit like map.getOffsetFromOrigin(point) gets strange y values before the move...so maybe its something like an old pixelOrigin being used in these circumstances... I note if I do ```_pixelOrigin...