@ng-maps/core
Version:
**@ng-maps/core** is a simple, modular and tree-shakable library for displaying google-maps inside an angular application
136 lines (135 loc) • 6.13 kB
TypeScript
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<GeoPoint> | Array<Array<GeoPoint>>;
/**
* 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<google.maps.PolyMouseEvent>;
/**
* This event is fired when the DOM dblclick event is fired on the Polygon.
*/
polyDblClick: EventEmitter<google.maps.PolyMouseEvent>;
/**
* This event is repeatedly fired while the user drags the polygon.
*/
polyDrag: EventEmitter<MouseEvent>;
/**
* This event is fired when the user stops dragging the polygon.
*/
polyDragEnd: EventEmitter<MouseEvent>;
/**
* This event is fired when the user starts dragging the polygon.
*/
polyDragStart: EventEmitter<MouseEvent>;
/**
* This event is fired when the DOM mousedown event is fired on the Polygon.
*/
polyMouseDown: EventEmitter<google.maps.PolyMouseEvent>;
/**
* This event is fired when the DOM mousemove event is fired on the Polygon.
*/
polyMouseMove: EventEmitter<google.maps.PolyMouseEvent>;
/**
* This event is fired on Polygon mouseout.
*/
polyMouseOut: EventEmitter<google.maps.PolyMouseEvent>;
/**
* This event is fired on Polygon mouseover.
*/
polyMouseOver: EventEmitter<google.maps.PolyMouseEvent>;
/**
* This event is fired whe the DOM mouseup event is fired on the Polygon
*/
polyMouseUp: EventEmitter<google.maps.PolyMouseEvent>;
/**
* This even is fired when the Polygon is right-clicked on.
*/
polyRightClick: EventEmitter<google.maps.PolyMouseEvent>;
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<NgMapsPolygonDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<NgMapsPolygonDirective, "map-polygon", never, { "clickable": { "alias": "clickable"; "required": false; }; "draggable": { "alias": "polyDraggable"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "fillColor": { "alias": "fillColor"; "required": false; }; "fillOpacity": { "alias": "fillOpacity"; "required": false; }; "geodesic": { "alias": "geodesic"; "required": false; }; "paths": { "alias": "paths"; "required": false; }; "strokeColor": { "alias": "strokeColor"; "required": false; }; "strokeOpacity": { "alias": "strokeOpacity"; "required": false; }; "strokeWeight": { "alias": "strokeWeight"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "zIndex": { "alias": "zIndex"; "required": false; }; }, { "polyClick": "polyClick"; "polyDblClick": "polyDblClick"; "polyDrag": "polyDrag"; "polyDragEnd": "polyDragEnd"; "polyDragStart": "polyDragStart"; "polyMouseDown": "polyMouseDown"; "polyMouseMove": "polyMouseMove"; "polyMouseOut": "polyMouseOut"; "polyMouseOver": "polyMouseOver"; "polyMouseUp": "polyMouseUp"; "polyRightClick": "polyRightClick"; }, never, never, false, never>;
}