Comment créer un marqueur avec une icône personnalisée pour google maps API v3?

J'ai lu https://developers.google.com/maps/documentation/javascript/overlays pour un certain temps maintenant et je n'arrive pas à obtenir une icône personnalisée pour mon plan de travail.

Voici mon code javascript:

var simplerweb = new google.maps.LatLng(55.977046,-3.197118);
var marker;
var map;

function initialize() {
    var myOpts = {
        center:    simplerweb,  
        zoom:      15,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOpts);
    marker = new google.maps.Marker({
        map:        map,
        draggable:  true,
        animation:  google.maps.Animation.DROP,
        position:   simplerweb
    });
    google.maps.event.addListener(marker, 'click', toggleBounce);
}

function toggleBounce() {
  if (marker.getAnimation() != null) {
    marker.setAnimation(null);
  } else {
    marker.setAnimation(google.maps.Animation.BOUNCE);
  }
}

Tous les pointeurs pour un débutant complet avec gmaps?

source d'informationauteur andy