@deck.gl/carto
Version:
CARTO official integration with Deck.gl. Build geospatial applications using CARTO and Deck.gl.
32 lines • 760 B
TypeScript
import { Layer } from '@deck.gl/core';
export type ParseMapResult = {
/** Map id. */
id: string;
/** Title of map. */
title: string;
/** Description of map. */
description?: string;
createdAt: string;
updatedAt: string;
initialViewState: any;
/** @deprecated Use `basemap`. */
mapStyle: any;
token: string;
layers: Layer[];
};
export declare function parseMap(json: any): {
id: any;
title: any;
description: any;
createdAt: any;
updatedAt: any;
initialViewState: any;
/** @deprecated Use `basemap`. */
mapStyle: {
styleType: string;
visibleLayerGroups: Record<string, boolean>;
};
token: any;
layers: any;
};
//# sourceMappingURL=parse-map.d.ts.map