> var marker = new GMarker(point,customIcons["Dynamic"]);
> I had tried adding the zindex as a third parameter, but to no avail.

The reference documentation for GMarker
http://code.google.com/apis/maps/documentation/reference.html#GMarker
tells you that the supported version only accepts two parameters

But the second parameter should be a GMarkerOptions literal object
http://code.google.com/apis/maps/documentation/reference.html#GMarkerOptions

So construction should be something like
var marker = new GMarker( point , { someoption : somevariable ,
otheroption : "somestring" } );

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-api?hl=en.

Reply via email to