You can do this yourself like this:
- Use
setInterval to set up a function to be run periodically.
- The function would call
panBy on the Google map object to "rotate" it a bit.
That should give you a simple animation that does what you want. You'd want to adjust the time interval that you give to setInterval to get something that feels smooth of course. You should have something like this:
// Create your map and leave it in the "map" variable.
setInterval(function() {
map.panBy(x, 0);
}, n);
Choosing appropriate x and n values is up to you.