Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm building a google maps web site with markers placed onto the map. Some times the markers overlap so I want to be able to interactively bring to the front specific markers.

I can use setZIndex() for this. But I need to know the initial max zindex of all the markers. getZIndex() is no use as it doesnt seem to return anything unless youve already called setZIndex().

It would be tempting to say "just start with a very big number" but I believe Google uses latitude or something to calculate the initial zIndex so the maximum zindex may vary? Making this scheme risky.

Does anyone know what the max initial zIndex will be for N markers in Google Maps V3?

share|improve this question

1 Answer

up vote 7 down vote accepted

You can use the constant MAX_ZINDEX to ensure that the marker will display on top.

marker.setZIndex(google.maps.Marker.MAX_ZINDEX + 1);

Search the reference of the constant in the Google Maps API V3 Documentation

share|improve this answer
Thanks that worked. – spiderplant0 Oct 29 '11 at 12:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.