Ajouter un marqueur CSS à Google Maps

Quelqu'un peut-veuillez indiquer comment je pourrais ajouter cette animation marqueur au-dessous de l'API google maps.

Ci-dessous est le standard de l'api google maps code avec l'option de donner la source de l'image pour le marqueur (icône).

function initialize() {
  var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
  var mapOptions = {
    zoom: 4,
    center: myLatlng
  }
  var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);

  var marker = new google.maps.Marker({
      position: myLatlng,
      map: map,
      icon: marker.png,         //Option for setting the marker source
      title: 'Hello World!'
  });
}

google.maps.event.addDomListener(window, 'load', initialize);

source d'informationauteur kurrodu