react-native-maps
Version:
React Native Mapview component for iOS + Android
19 lines (18 loc) • 417 B
TypeScript
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;
}>;