@undp/data-viz 1.2.4 → 1.2.6
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/index.cjs +15 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.js +8218 -8194
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5269,6 +5269,12 @@ declare interface Props_16 {
|
|
|
5269
5269
|
atmosphereColor?: string;
|
|
5270
5270
|
/** Defines if the globe can be zoomed when scrolled */
|
|
5271
5271
|
enableZoom?: boolean;
|
|
5272
|
+
/** Position offset of the globe relative to the canvas center */
|
|
5273
|
+
globeOffset?: [number, number];
|
|
5274
|
+
/** Defines the camera distance from Earth. This helps in defining the default size of the globe. Smaller = closer camera therefore the globe is bigger) */
|
|
5275
|
+
altitude?: number;
|
|
5276
|
+
/** Defines the spacing between the country shape polygon with the sphere */
|
|
5277
|
+
polygonAltitude?: number;
|
|
5272
5278
|
/** Scale for the colors */
|
|
5273
5279
|
scaleType?: Exclude<ScaleDataType, 'linear'>;
|
|
5274
5280
|
/** Toggles if the color scaling is categorical or not */
|