@kepler.gl/constants 3.1.0-alpha.7 → 3.1.1
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/default-settings.d.ts +14 -1
- package/dist/default-settings.js +26 -8
- package/package.json +2 -2
- package/umd/keplergl.min.js +2 -2
|
@@ -569,7 +569,7 @@ export declare const FIELD_OPTS: {
|
|
|
569
569
|
size: never[];
|
|
570
570
|
};
|
|
571
571
|
format: {
|
|
572
|
-
legend: (
|
|
572
|
+
legend: () => string;
|
|
573
573
|
tooltip: never[];
|
|
574
574
|
};
|
|
575
575
|
};
|
|
@@ -843,4 +843,17 @@ export declare const POSTPROCESSING_EFFECTS: {
|
|
|
843
843
|
export declare const EFFECT_DESCRIPTIONS: EffectDescription[];
|
|
844
844
|
export declare type EffectType = 'ink' | 'brightnessContrast' | 'hueSaturation' | 'vibrance' | 'sepia' | 'dotScreen' | 'colorHalftone' | 'noise' | 'triangleBlur' | 'zoomBlur' | 'tiltShift' | 'edgeWork' | 'vignette' | 'magnify' | 'hexagonalPixelate' | 'lightAndShadow';
|
|
845
845
|
export declare const SYNC_TIMELINE_MODES: Record<string, SyncTimelineMode>;
|
|
846
|
+
export declare const GEOARROW_METADATA_KEY = "ARROW:extension:name";
|
|
847
|
+
/**
|
|
848
|
+
* Enum holding GeoArrow extension type names
|
|
849
|
+
*/
|
|
850
|
+
export declare enum GEOARROW_EXTENSIONS {
|
|
851
|
+
POINT = "geoarrow.point",
|
|
852
|
+
LINESTRING = "geoarrow.linestring",
|
|
853
|
+
POLYGON = "geoarrow.polygon",
|
|
854
|
+
MULTIPOINT = "geoarrow.multipoint",
|
|
855
|
+
MULTILINESTRING = "geoarrow.multilinestring",
|
|
856
|
+
MULTIPOLYGON = "geoarrow.multipolygon",
|
|
857
|
+
WKB = "geoarrow.wkb"
|
|
858
|
+
}
|
|
846
859
|
export {};
|