Google Map Marker pulse animation?

animation, google-maps, google-maps-api-3

Solution

After checking out the code I noticed that CSS pulsate is used on the demo you provided. It would be nice to see other examples of this.

He uses a static image for the center.

Here is the code to play around with... http://jsfiddle.net/86Ejf/945/

var image = new google.maps.MarkerImage(
    'bluedot_retina.png',
    null, // size
    null, // origin
    new google.maps.Point( 8, 8 ), // anchor (move to center of marker)
    new google.maps.Size( 17, 17 ) // scaled size (required for Retina display icon)
);

Problem

I wonder is there any way to make Google Map Marker to pulse? Like here: http://plebeosaur.us/etc/map/

Original source