Can someone please advise how I could add this animated marker to the below google maps API.
The below is the standard google maps api code with option to give imag
Use RichMarker for Google Maps v3 - usage:
curMarker = new RichMarker({ position: new google.maps.LatLng(position), map: map, content: 'Bar' });
JSFiddle example.