我想在地图上的标记周围画一个多边形,请帮我实现它。谢谢
<GoogleMapReact
defaultZoom={10}
bootstrapURLKeys={{ key: 'api_key' }}
defaultCenter={[41.25480000139866, -85.85206222945915]}
yesIWantToUseGoogleMapApiInternals
>
{places.map((place, idx) => (
<Marker {...place} key={idx} />
))}
</GoogleMapReact>```