Skip to content

Commit f77ff5a

Browse files
Merge pull request #6 from NASA-AMMOS/development
1.0.1
2 parents f722647 + 795c84a commit f77ff5a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+677
-115
lines changed

dist/lithosphere.js

Lines changed: 43 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/constants.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export declare const NO_DATA_VALUE_INTERNAL = -1100101;

dist/src/controls/altitude.d.ts

Whitespace-only changes.

dist/src/controls/compass.d.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { Corners } from '../generalTypes.d.ts';
2+
interface Private {
3+
}
4+
export default class Compass {
5+
_: Private;
6+
p: any;
7+
name: string;
8+
corner: Corners;
9+
constructor(parent: any, name: string);
10+
getControl: () => string;
11+
attachEvents: () => void;
12+
onUpdate: () => void;
13+
setDirection: () => void;
14+
}
15+
export {};

dist/src/controls/controls.d.ts

Whitespace-only changes.

dist/src/controls/coordinates.d.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { Corners } from '../generalTypes.d.ts';
2+
interface Private {
3+
}
4+
interface Params {
5+
existingDivId?: string;
6+
}
7+
export default class Coordinates {
8+
_: Private;
9+
p: any;
10+
name: string;
11+
params: Params;
12+
corner: Corners;
13+
constructor(parent: any, name: string, params?: object);
14+
getControl: () => string;
15+
attachEvents: () => void;
16+
onUpdate: () => void;
17+
private updateMouseCoords;
18+
}
19+
export {};

dist/src/controls/crop.d.ts

Whitespace-only changes.

dist/src/controls/exaggerate.d.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import { Corners } from '../generalTypes.d.ts';
2+
interface Private {
3+
}
4+
export default class Exaggerate {
5+
_: Private;
6+
id: string;
7+
p: any;
8+
name: string;
9+
corner: Corners;
10+
exaggeration: number;
11+
constructor(parent: any, name: string);
12+
getControl: () => string;
13+
attachEvents: () => void;
14+
private getInactiveContent;
15+
private getActiveContent;
16+
setExaggeration: (multiplier: number) => void;
17+
}
18+
export {};

dist/src/controls/home.d.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Corners } from '../generalTypes';
2+
interface Private {
3+
}
4+
export default class Home {
5+
_: Private;
6+
p: any;
7+
name: string;
8+
corner: Corners;
9+
constructor(parent: any, name: string);
10+
getControl: () => string;
11+
attachEvents: () => void;
12+
}
13+
export {};

dist/src/controls/layers.d.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { Corners } from '../generalTypes.d.ts';
2+
interface Private {
3+
}
4+
export default class Layers {
5+
_: Private;
6+
id: string;
7+
p: any;
8+
name: string;
9+
corner: Corners;
10+
constructor(parent: any, name: string);
11+
getControl: () => string;
12+
attachEvents: () => void;
13+
private getInactiveContent;
14+
private getActiveContent;
15+
private attachEventsInternal;
16+
}
17+
export {};

0 commit comments

Comments
 (0)