kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
20 lines (19 loc) • 830 B
TypeScript
import { z } from 'zod';
export declare const basemap: import("@openassistant/utils").ExtendedTool<z.ZodObject<{
styleType: z.ZodEnum<["no_map", "dark-matter", "positron", "voyager", "satellite", "dark", "light", "muted", "muted_night"]>;
}, "strip", z.ZodTypeAny, {
styleType: "light" | "dark" | "no_map" | "dark-matter" | "positron" | "voyager" | "satellite" | "muted" | "muted_night";
}, {
styleType: "light" | "dark" | "no_map" | "dark-matter" | "positron" | "voyager" | "satellite" | "muted" | "muted_night";
}>, {
success: boolean;
styleType: string;
details?: string | undefined;
instruction?: string | undefined;
}, {
styleType: string;
}, never>;
export declare type BasemapTool = typeof basemap;
export declare function BasemapToolComponent({ styleType }: {
styleType: any;
}): null;