OpenLayers - HTML DIV overlay

2019-04-23 00:50发布

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?

标签: openlayers
2条回答
戒情不戒烟
2楼-- · 2019-04-23 01:16

add a z-index

<div id="maphost" style="width:100%; height:100%; z-index: 0"></div>
<div id="overlay" style="z-index:9999"></div>
查看更多
对你真心纯属浪费
3楼-- · 2019-04-23 01:24

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

div.olMapViewport {
     z-index: 0;
}
查看更多
登录 后发表回答