I want to animate google map from one place to another. I use following code to do this;
final GoogleMapController controller = await _controller.future;
controller.animateCamera(CameraUpdate.newCameraPosition(_endPlace));
The animation works fine. But when I move to the new location the map take some time to load at the new location.
Is there a way to pre load the maps needed along the animation path?