信息窗

// 默认样式
<InfoWindow position={[...]} visible={visible} content="..." />
// 自定义样式
<InfoWindow position={[...]} visible={visible} isCustom>
<div>自定义信息窗内容</div>
</InfoWindow>

Source Code

Props

属性名类型备注
positionnumber[2]
visibleboolean
autoMoveboolean
avoidnumber[4]
closeWhenClickMapboolean
sizenumber[2]
offsetnumber[2]
anchorstring
isCustomboolean若为true,则必须搭配children使用
contentstringisCustomtrue,此属性将被忽略
childrenReact.ReactNode当isCustomtrue时有效
classNamestring当isCustomtrue时有效
stylestring当isCustomtrue时有效
  1. 当使用isCustom=true配合children自定义InfoWindow内容时,children将被一个<div>所包裹,className, style属性均作用于这个<div>

Events

事件名备注
open
close

Example

查看源代码: