gpt4 book ai didi

javascript - 向 Leaflet map 添加可点击按钮

转载 作者:太空宇宙 更新时间:2023-11-04 15:52:05 25 4
gpt4 key购买 nike

我想在我的 Leaflet map 的右上角(距顶部 20 像素,距右侧 20 像素)添加一个按钮。问题是我不确定如何正确执行此操作。问题是当我使用那个传单类“leaflet-top leaflet-right”时,我的按钮不可点击,当我将鼠标悬停在它上面时,没有任何反应。它只是作为 map 的一部分保留下来。

这是我的 html 代码:

        <div id="mainContainer">
<div id="mapDiv">
<div id="map">
<div class="leaflet-top leaflet-right">
<div id="refreshButton"><div id="refreshButtonPictogram"><img src="pictograms/refresh.png" height="30px"></div></div>
</div>>
</div>
</div>
<div id="bars"></div>
</div>

这是我的CSS:

#mainContainer{
position: relative;
width: 100%;
height: calc(100% - 80px);
display: flex;
}

#bars{
z-index: 0;
width: 500px;
overflow-x: auto;
border-left: 1px solid rgb(214, 49, 65);
}

::-webkit-scrollbar {
display: none;
}

#mapDiv {
flex: 1;
}
#map {
width: 100%;
height: 100%;
z-index: 0;
}

#refreshButton{
display: flex;
align-items: center;
position: relative;
top: 20px;
right: 20px;
width: 50px;
height: 50px;
background-color: white;
border-radius: 5px;
border-color: gray;
border-style: solid;
border-width: 1px 1px 1px 1px;
opacity: 0.6;
text-align: center;
}
#refreshButton:hover{
opacity: 0.8;
cursor: pointer;
}

#refreshButtonPictogram{
margin: auto;
}


@media screen and (max-width: 500px) {
#mainContainer {
flex-direction: column;
}
#mapDiv,
#bars {
flex: 1;
}
}

最佳答案

以下对我有用:

HTML

<body>
<div id="map"></div>
<button id="refreshButton">Refresh Button</button>
</body>

CSS

#refreshButton {
position: absolute;
top: 20px;
right: 20px;
padding: 10px;
z-index: 400;
}

这里是 a JSBin用上面的代码。

Refresh button on top of map

从上面链接的 JSBin 截取的屏幕截图。

我也遇到了this resource on creating a custom control button in leaflet .

更新

我将您的 HTML 更改为以下内容:

<div id="mainContainer">
<div id="mapDiv">
<div id="map">
<button id="refreshButton">
Button
</button>
</div>
</div>
<div id="bars"></div>
</div>

我还将 #refreshButton 位置规则更改为 absolute 并将其 z-index 设置为 500。

除此之外我还添加了

html, body {
height: 100%;
margin: 0;
padding: 0;
}

查看 this JSBin 中更新的解决方案.

关于javascript - 向 Leaflet map 添加可点击按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49372018/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com