I\'d like to be able to zoom in smoothly on a marker in Google Maps. If one just sets the zoom on double click, the map is suddenly on that zoom level, without any smooth tr
You could try to use a setInterval to zoom in one level at a time, and clear it when you reach your desired level.
The problem with this is that the interval that will make it work is entirely dependent on the cpu and bandwidth of the users machine (how fast can it load and render the new set of image tiles).
Tbh, i'm not sure it can be done so that it will work great in every situation, but a small interval between zoom levels might help a bit.
A few things to keep in mind tho:
Those two and probably other reasons are why google didn't build the kind of zoom you wish into maps in the first place - because it's a bad idea...