UNPKG

react-native-maps

Version:
19 lines (18 loc) 417 B
import { NativeSyntheticEvent } from 'react-native'; import { LatLng, Point } from './sharedTypes'; export type PolygonPressEvent = NativeSyntheticEvent<{ action: 'polygon-press'; /** * @platform iOS: Google Maps */ id?: string; /** * @platform iOS: Apple Maps * @platform Android */ coordinate?: LatLng; /** * @platform Android */ position?: Point; }>;