Skip to content

Commit 8c1ce09

Browse files
committed
WMS tile seam corrections
1 parent 5f51040 commit 8c1ce09

34 files changed

+373
-2203
lines changed

dist/lithosphere.js

Lines changed: 1 addition & 2203 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/index.d.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import { Corners } from '../generalTypes';
2+
export default class Controls {
3+
p: any;
4+
controlContainer: HTMLElement;
5+
corners: {
6+
TopLeft: HTMLElement;
7+
TopRight: HTMLElement;
8+
BottomLeft: HTMLElement;
9+
BottomRight: HTMLElement;
10+
};
11+
activeControls: any;
12+
compass: any;
13+
coordinates: any;
14+
home: any;
15+
layers: any;
16+
exaggerate: any;
17+
observe: any;
18+
walk: any;
19+
link: any;
20+
constructor(parent: any);
21+
addControl: (name: string, control: any, params?: object, corner?: Corners) => any;
22+
removeControl: (name: any) => void;
23+
_onUpdateEvent: () => void;
24+
_onMove: (lng: any, lat: any, height: any) => void;
25+
_onMouseMove: (lng: any, lat: any, height: any) => void;
26+
_onMouseOut: (e?: any) => void;
27+
_onFirstPersonUpdate: () => void;
28+
_onOrbitalUpdate: (e?: any) => void;
29+
}

0 commit comments

Comments
 (0)