UNPKG

@ng-maps/core

Version:

**@ng-maps/core** is a simple, modular and tree-shakable library for displaying google-maps inside an angular application

24 lines (23 loc) 1.01 kB
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import * as i0 from "@angular/core"; /** * NgMapsPolylinePoint represents one element of a polyline within a {@link * NgMapsPolyline} */ export declare class NgMapsPolylinePoint implements OnChanges { /** * The latitude position of the point. */ latitude?: number; /** * The longitude position of the point; */ longitude?: number; /** * This event emitter gets emitted when the position of the point changed. */ positionChanged: EventEmitter<google.maps.LatLngLiteral>; ngOnChanges(changes: SimpleChanges): any; static ɵfac: i0.ɵɵFactoryDeclaration<NgMapsPolylinePoint, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<NgMapsPolylinePoint, "map-polyline-point", never, { "latitude": { "alias": "latitude"; "required": false; }; "longitude": { "alias": "longitude"; "required": false; }; }, { "positionChanged": "positionChanged"; }, never, never, false, never>; }