更改或移动弹出反应传单的位置
change or move the position of the popup react-leaflet
我的标记弹出窗口重叠,使其部分可见。我需要把弹窗移到上面。
代码:
<Marker
draggable={draggable}
eventHandlers={eventHandlers}
position={position}
ref={markerRef}
>
<Popup>
<span onClick={toggleDraggable}>
{draggable && <Button>Click Here</Button>}
</span>
</Popup>
</Marker>
我也试过访问弹出组件,但这会破坏弹出窗口。
.leaflet-popup-content-wrapper {
padding: 1px;
text-align: left;
border-radius: 12px;
margin-bottom: 30px;
}
绕过它的技巧:
.leaflet-popup {
padding-bottom: 30px; /* adjust as you see fit */
}
我的标记弹出窗口重叠,使其部分可见。我需要把弹窗移到上面。
代码:
<Marker
draggable={draggable}
eventHandlers={eventHandlers}
position={position}
ref={markerRef}
>
<Popup>
<span onClick={toggleDraggable}>
{draggable && <Button>Click Here</Button>}
</span>
</Popup>
</Marker>
我也试过访问弹出组件,但这会破坏弹出窗口。
.leaflet-popup-content-wrapper {
padding: 1px;
text-align: left;
border-radius: 12px;
margin-bottom: 30px;
}
绕过它的技巧:
.leaflet-popup {
padding-bottom: 30px; /* adjust as you see fit */
}