Skip to content

Commit 7a176b4

Browse files
committed
Stage Release
1 parent d779cb5 commit 7a176b4

36 files changed

+465
-2205
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# CHANGELOG
2+
3+
[Official Releases](https://github.com/NASA-AMMOS/LithoSphere/releases)
4+
5+
## v1.0.0
6+
7+
LithoSphere's first release!
8+
9+
## v1.0.1
10+
11+
### Added
12+
13+
- Support for WMS tiles of any projection
14+
- A .tif tile parser
15+
16+
## v1.0.2
17+
18+
### Changed
19+
20+
- PNG.js and zlib.js are now modules instead of globals

dist/lithosphere.js

Lines changed: 1 addition & 2205 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 {};

0 commit comments

Comments
 (0)