@loaders.gl/geopackage
Version:
GeoPackage data loaders
9 lines • 532 B
TypeScript
import type { Tables, GeoJSONTable } from '@loaders.gl/schema';
import type { GeoPackageLoaderOptions } from "../geopackage-loader.js";
/**
* We pin to the same version as sql.js that we use.
* As of March 2022, versions 1.6.0, 1.6.1, and 1.6.2 of sql.js appeared not to work.
*/
export declare const DEFAULT_SQLJS_CDN: string | null;
export declare function parseGeoPackage(arrayBuffer: ArrayBuffer, options?: GeoPackageLoaderOptions): Promise<GeoJSONTable | Tables<GeoJSONTable>>;
//# sourceMappingURL=parse-geopackage.d.ts.map