import React from 'react'; import { Polygon as GMPolygon, useGoogleMap } from '@react-google-maps/api'; import type { MapPolygonProps } from 'react-native-maps'; import { mapMouseEventToMapEvent } from '../utils/mouse-event'; export function Polygon(props: MapPolygonProps) { const map = useGoogleMap(); return ( ({ lat: c.latitude, lng: c.longitude, }))} onClick={(e) => mapMouseEventToMapEvent(e, null, map, 'polygon-press')} options={{ geodesic: props.geodesic, clickable: props.tappable, fillColor: props.fillColor, strokeColor: props.strokeColor, strokeWeight: props.strokeWidth, }} /> ); }