我需要帮助在谷歌地图中的标记周围绘制多边形
<GoogleMapReact
defaultZoom={10}
bootstrapURLKeys={{ key: 'api_key' }}
defaultCenter={[41.25480000139866, -85.85206222945915]}
yesIWantToUseGoogleMapApiInternals
>
{places.map((place, idx) => (
<Marker {...place} key={idx} />
))}
</GoogleMapReact>```