OpenLayers - HTML DIV 覆盖
我正在使用 OpenLayers 在标准 HTML 页面上显示地图,并且我想创建一个位于地图顶部的 div。然而,div 似乎总是被地图图块遮挡。
我相信有一种方法可以将元素添加到地图本身,但在这种情况下,这不是一个可行的选择,因为 div 可能会部分浮动在地图上,部分浮动在其他页面元素上。
<div id="maphost" style="width: 100%; height: 100%" />
<div id="overlay" />
这就是基本的 HTML。我需要向任一 DIV 添加哪些 CSS 值才能实现此目的?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
添加 z 索引
add a z-index
另一种内部方法是使用以下 css:
Another internal method for doing it is to use this css:
根据需要编辑此内容
edit this as needed