mirror of https://gitee.com/antv-l7/antv-l7
1.5 KiB
1.5 KiB
title | order |
---|---|
Popup 组件 | 4 |
markdown:docs/common/style.md
Popup Props
prop name | Type | Default | Description |
---|---|---|---|
option | string |
null |
popup 配置项 |
lnglat | `Array | Object` | null |
children | React.ReactNode |
null |
子组件 |
option
prop name | Type | Default | Description |
---|---|---|---|
closeButton | string |
true |
是否显示关闭按钮 |
closeOnClick | string |
blue |
点击是否关闭 popup |
anchor | string |
null |
center, top, top-left, top-right, bottom, bottom-left,bottom-right,left, right |
offsets | Array[x,y] |
null |
popup 位置偏移 |
className | string |
null |
样式名称 |
import { Popup } from '@antv/l7-react';
<Popup option={{
closeOnClick: false;// 如果Popup内需要响应Dom事件需设置成false,否则事件不生效
}} lnglat={[]} />;