kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
27 lines (21 loc) • 500 B
TypeScript
// SPDX-License-Identifier: MIT
// Copyright contributors to the kepler.gl project
export type ZoomStops = number[][];
export type DomainStops = {
z: number[];
stops: ZoomStops;
interpolation: 'interpolate';
};
export type ZoomStopsConfig = {
enabled?: boolean;
stops: ZoomStops | null;
};
export type DatasetAttribution = {
title: string;
url: string | null;
};
export type AttributionWithStyle = DatasetAttribution & {
logoUrl: string;
height?: number;
bottom?: number;
};