import { AfterContentInit, EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core'; import { GeoPoint } from '../interface/geo-point'; import { PolygonManager } from '../services/managers/polygon.manager'; import * as i0 from "@angular/core"; /** * NgMapsPolygon renders a polygon on a {@link https://ng-maps.github.io/core/components/NgMapsViewComponent.html|NgMapsView} */ export declare class NgMapsPolygonDirective implements OnDestroy, OnChanges, AfterContentInit { private _polygonManager; constructor(_polygonManager: 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: Array | Array>; /** * 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 even is fired when the Polygon is right-clicked on. */ polyRightClick: EventEmitter; private _id?; private _polygonAddedToManager; private subscription; /** @internal */ ngAfterContentInit(): void; ngOnChanges(changes: SimpleChanges): any; private _init; private _addEventListeners; private _updatePolygonOptions; /** @internal */ id(): string | undefined; /** @internal */ ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }