/// import { AfterContentInit, EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core'; import { ExgMapPolygonManagerService } from '../services'; import { MVCEvent } from '../utils/mvcarray-utils'; export declare class ExgMapPolygonComponent implements OnDestroy, OnChanges, AfterContentInit { private _polygonManager; private static _polygonOptionsAttributes; /** * Indicates whether this Polygon handles mouse events. Defaults to true. */ clickable: boolean; /** * If set to true, the user can drag this shape over the map. The geodesic * property defines the mode of dragging. Defaults to false. */ draggable: boolean; /** * If set to true, the user can edit this shape by dragging the control * points shown at the vertices and on each segment. Defaults to false. */ editable: boolean; /** * The fill color. All CSS3 colors are supported except for extended * named colors. */ fillColor: string; /** * The fill opacity between 0.0 and 1.0 */ fillOpacity: number; /** * When true, edges of the polygon are interpreted as geodesic and will * follow the curvature of the Earth. When false, edges of the polygon are * rendered as straight lines in screen space. Note that the shape of a * geodesic polygon may appear to change when dragged, as the dimensions * are maintained relative to the surface of the earth. Defaults to false. */ geodesic: boolean; /** * The ordered sequence of coordinates that designates a closed loop. * Unlike polylines, a polygon may consist of one or more paths. * As a result, the paths property may specify one or more arrays of * LatLng coordinates. Paths are closed automatically; do not repeat the * first vertex of the path as the last vertex. Simple polygons may be * defined using a single array of LatLngs. More complex polygons may * specify an array of arrays. Any simple arrays are converted into Arrays. * Inserting or removing LatLngs from the Array will automatically update * the polygon on the map. */ paths: google.maps.LatLng[] | google.maps.LatLng[][] | google.maps.MVCArray | google.maps.MVCArray> | google.maps.LatLngLiteral[] | google.maps.LatLngLiteral[][]; /** * The stroke color. All CSS3 colors are supported except for extended * named colors. */ strokeColor: string; /** * The stroke opacity between 0.0 and 1.0 */ strokeOpacity: number; /** * The stroke width in pixels. */ strokeWeight: number; /** * Whether this polygon is visible on the map. Defaults to true. */ visible: boolean; /** * The zIndex compared to other polys. */ zIndex: number; /** * This event is fired when the DOM click event is fired on the Polygon. */ polyClick: EventEmitter; /** * This event is fired when the DOM dblclick event is fired on the Polygon. */ polyDblClick: EventEmitter; /** * This event is repeatedly fired while the user drags the polygon. */ polyDrag: EventEmitter; /** * This event is fired when the user stops dragging the polygon. */ polyDragEnd: EventEmitter; /** * This event is fired when the user starts dragging the polygon. */ polyDragStart: EventEmitter; /** * This event is fired when the DOM mousedown event is fired on the Polygon. */ polyMouseDown: EventEmitter; /** * This event is fired when the DOM mousemove event is fired on the Polygon. */ polyMouseMove: EventEmitter; /** * This event is fired on Polygon mouseout. */ polyMouseOut: EventEmitter; /** * This event is fired on Polygon mouseover. */ polyMouseOver: EventEmitter; /** * This event is fired whe the DOM mouseup event is fired on the Polygon */ polyMouseUp: EventEmitter; /** * This event is fired when the Polygon is right-clicked on. */ polyRightClick: EventEmitter; /** * This event is fired after Polygon first path changes. */ polyPathsChange: EventEmitter>; private _id; private _polygonAddedToManager; private _subscriptions; constructor(_polygonManager: ExgMapPolygonManagerService); /** @internal */ ngAfterContentInit(): void; ngOnChanges(changes: SimpleChanges): any; private _init; private _addEventListeners; private _updatePolygonOptions; /** @internal */ id(): string; /** @internal */ ngOnDestroy(): void; getPath(): Promise; getPaths(): Promise; } //# sourceMappingURL=exg-map-polygon.component.d.ts.map