Marker .getZIndex will return the value of the zIndex property that you set, if any.
If a marker is dragging it is assigned a zIndex of 1000000* to ensure it appears in front of all other markers. Else if a marker has an explicit zIndex it is rendered at that zIndex. Else a marker is rendered with a zIndex that is its y-coordinate returned by MapCanvasProjection .fromLatLngToDivPixel (http://code.google.com/apis/maps/documentation/javascript/reference.html#MapCanvasProjection). * Value subject to change. To bring a marker to front I suggest assigning it a large zIndex such as 10000. On Sat, Jul 24, 2010 at 12:03 AM, Rossko <[email protected]> wrote: >> So what I would like to do is calculate the undefined zIndex and add >> 999 so they look better. > > You could try the documented marker getZIndex method > http://code.google.com/apis/maps/documentation/javascript/reference.html#Marker > although others have said it doesn't seem to work, in the past > > -- > You received this message because you are subscribed to the Google Groups > "Google Maps JavaScript API v3" 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-js-api-v3?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
