UNPKG

708 BTypeScriptView Raw
1import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2import { LatLngLiteral } from '../../core/services/google-maps-types';
3/**
4 * SebmGoogleMapPolylinePoint represents one element of a polyline within a {@link
5 * SembGoogleMapPolyline}
6 */
7export declare class SebmGoogleMapPolylinePoint implements OnChanges {
8 /**
9 * The latitude position of the point.
10 */
11 latitude: number;
12 /**
13 * The longitude position of the point;
14 */
15 longitude: number;
16 /**
17 * This event emitter gets emitted when the position of the point changed.
18 */
19 positionChanged: EventEmitter<LatLngLiteral>;
20 constructor();
21 ngOnChanges(changes: SimpleChanges): any;
22}