Can anyone explain the exact syntax used to set the z-index for a marker using the Google Maps API (Version 3)?
In the MarkerOptions:
var marker = new google.maps.Marker({
....
zIndex: 100
});
Or via the Marker setter:
marker.setZIndex(100);