goMap() google maps plugin - marker shadows problem

goMap() google maps plugin - marker shadows problem

I'm using the goMap Google Maps plugin very successfully (and I highly recommend it) - except that I can't seem to set shadows on my map markers. There appears to be support for this in the plugin source code - but there's no documentation I can find.

Anyone got an clues on how to do this?

This is a simplified version of the code I'm trying to use. I have checked the obvious/stupid things - file path is correct (the image isn't 404ing in firebug), and there's no js errors being thrown, or any other warnings reported.

  1.         /* --- Add markers to map --- */
  2.                 addMapMarkers = function(){
  3.                     $(".event-item").each(function(){
  4.                         $this = $(this);
  5.        
  6.                         metaTitle = $this.find("h3").text();
  7.                         metaLocationLat = $this.find(".metaLongLat .latitude").text();
  8.                         metaLocationLong = $this.find(".metaLongLat .longitude").text();
  9.                         markerImage = "/images/map-markers/custommapmarker.png";
  10.                         markerShadow = "/images/map-markers/shadow.png"; /* NOT WORKING */
  11.                         bubbleContent = 'Content of popup bubble';
  12.                         $.goMap.createMarker({
  13.                             latitude: metaLocationLat,
  14.                             longitude: metaLocationLong,
  15.                             title: metaTitle,
  16.                             icon: markerImage,
  17.                             shadow: markerShadow,     /* NOT WORKING */
  18.                             html: {
  19.                                 content: bubbleContent,
  20.                             }
  21.                         });
  22.                     });
  23.                 }
  24.         /* --- Create map --- */
  25.             $("#map-container").goMap({
  26.                 latitude:             -28.149,
  27.                 longitude:         134.033,
  28.                 zoom:             4,
  29.                 scaleControl:     false,
  30.                 maptype:         'HYBRID'
  31.             });
  32.             addMapMarkers();

The result of this code is a map that displays correctly with a marker using a custom graphic - but no shadow.

Any ideas?