gralobe 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gralobe.js +190 -177
- package/dist/gralobe.js.map +1 -1
- package/dist/gralobe.umd.cjs +10 -1
- package/dist/gralobe.umd.cjs.map +1 -1
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -45,6 +45,8 @@ declare interface CountryStatistics {
|
|
|
45
45
|
* Visual effects configuration
|
|
46
46
|
*/
|
|
47
47
|
declare interface EffectsConfig {
|
|
48
|
+
/** Show atmosphere glow around globe */
|
|
49
|
+
atmosphere?: boolean;
|
|
48
50
|
/** Show cloud layer */
|
|
49
51
|
clouds?: boolean;
|
|
50
52
|
/** Cloud animation speed (0.1-3) */
|
|
@@ -148,6 +150,7 @@ export declare class GlobeViz implements GlobeVizAPI {
|
|
|
148
150
|
private createStars;
|
|
149
151
|
private createGUI;
|
|
150
152
|
private handleResize;
|
|
153
|
+
private handleKeydown;
|
|
151
154
|
private animate;
|
|
152
155
|
toGlobe(): void;
|
|
153
156
|
toFlat(): void;
|
package/package.json
CHANGED