UNPKG

1.03 kBTypeScriptView Raw
1import { H as HistoryPlayback, T as TsqExpression } from './HistoryPlayback-fe4b7977';
2
3declare class GeoProcessGraphic extends HistoryPlayback {
4 private dataSource;
5 private azureMapsSubscriptionKey;
6 private zoom;
7 private width;
8 private height;
9 private theme;
10 private center;
11 private bearing;
12 private pitch;
13 private maxZoom;
14 private minZoom;
15 private duration;
16 private map;
17 constructor(renderTarget: Element);
18 render(environmentFqdn: string, getToken: () => Promise<string>, data: Array<TsqExpression>, chartOptions: any): void;
19 protected loadResources(): Promise<any>;
20 protected draw(): void;
21 protected getDataPoints(results: Array<IGeoProcessGraphicLabelInfo>): void;
22 protected parseTsqResponse(response: any): {};
23 protected updateDataMarkers(dataPoints: Array<any>): void;
24 protected createTable(dataPointArr: any, idx: any): HTMLDivElement;
25}
26interface IGeoProcessGraphicLabelInfo {
27}
28
29export { GeoProcessGraphic as G };