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 using OpenLayers to display a map on a standard HTML page, and I want to create a div that sits on top of the map. However, the div always seems to be obscured by the map tiles.

I believe there is a way to add elements to the map itself, but in this case that isn't a viable option since the div will potentially float partially over the map, and partially over other page elements.

<div id="maphost" style="width: 100%; height: 100%" />
<div id="overlay" />

That is the basic HTML. What CSS values do I need to add to either DIV to make this possible?

share|improve this question

2 Answers

up vote 4 down vote accepted

add a z-index

<div id="maphost" style="width:100%; height:100%; z-index: 0"></div>
<div id="overlay" style="z-index:9999"></div>
share|improve this answer
It doesn't appear to make a difference. – Barguast Aug 10 '11 at 13:13
Scratch that, yes it does. Thanks! – Barguast Aug 10 '11 at 13:14

Another internal method for doing it is to use this css:

div.olMapViewport {
     z-index: 0;
}
share|improve this answer
Both answers +1 as they work great. Personally I prefer this one. BTW do you guys, the_skua or @ilia choly, have any idea where does the viewport takes/gets its z-index set to something greater than 0, as div.olMap has z-indexset to 0? – Boro Jul 17 '12 at 10:25
Don't know. Sorry I can't be of more help. – the_skua Jul 17 '12 at 19:37

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.