@totvs-agro/core-mobile
Version:
Core Mobile Totvs Agro (Front-End) para utilização dos estilos do T-Faces
11 lines (10 loc) • 329 B
TypeScript
import { ILatLng, Polygon } from '@ionic-native/google-maps';
declare type OnClickFunction = (point: ILatLng, polygon: Polygon) => void;
export interface PolygonOptions {
clickable?: boolean;
onclick?: OnClickFunction;
contentTooltip?: string;
borderColor?: string;
fillColor?: string;
}
export {};