gralobe 1.0.60 → 1.0.62
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/README.md +15 -4
- package/dist/gralobe.js +1943 -1725
- package/dist/gralobe.js.map +1 -1
- package/dist/gralobe.umd.cjs +139 -33
- package/dist/gralobe.umd.cjs.map +1 -1
- package/dist/index.d.ts +6 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -158,7 +158,7 @@ export declare class GlobeViz implements GlobeVizAPI {
|
|
|
158
158
|
private material;
|
|
159
159
|
private atmosphere;
|
|
160
160
|
private stars;
|
|
161
|
-
private
|
|
161
|
+
private categoryGUIs;
|
|
162
162
|
private choropleth;
|
|
163
163
|
private legend;
|
|
164
164
|
private exporter;
|
|
@@ -373,6 +373,11 @@ export declare interface GlobeVizConfig {
|
|
|
373
373
|
* @default false
|
|
374
374
|
*/
|
|
375
375
|
showDebug?: boolean;
|
|
376
|
+
/**
|
|
377
|
+
* Enable keyboard shortcuts (G for toggle projection, F for fullscreen)
|
|
378
|
+
* @default true
|
|
379
|
+
*/
|
|
380
|
+
enableShortcuts?: boolean;
|
|
376
381
|
/**
|
|
377
382
|
* Show library toolbar (Fullscreen, Data Grid)
|
|
378
383
|
* @default false
|
package/package.json
CHANGED