UNPKG

@loaders.gl/geopackage

Version:

GeoPackage data loaders

53 lines (46 loc) 1.53 kB
// loaders.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors import type {LoaderWithParser, LoaderOptions} from '@loaders.gl/loader-utils'; import {Tables, GeoJSONTable} from '@loaders.gl/schema'; import {parseGeoPackage, DEFAULT_SQLJS_CDN} from './lib/parse-geopackage'; import {GeoPackageFormat} from './geopackage-format'; // __VERSION__ is injected by babel-plugin-version-inline // @ts-ignore TS2304: Cannot find name '__VERSION__'. // const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; const VERSION = 'latest'; export type GeoPackageLoaderOptions = LoaderOptions & { /** Options for the geopackage loader */ geopackage?: { /** Shape of returned data */ shape?: 'geojson-table' | 'tables'; /** Name of table to load (defaults to first table), unless shape==='tables' */ table?: string; /** Use null in Node */ sqlJsCDN?: string | null; /** Override the URL to the worker bundle (by default loads from unpkg.com) */ workerUrl?: string; }; gis?: { reproject?: boolean; _targetCrs?: string; }; }; export const GeoPackageLoader = { ...GeoPackageFormat, dataType: null as unknown as GeoJSONTable | Tables<GeoJSONTable>, batchType: null as never, version: VERSION, parse: parseGeoPackage, options: { geopackage: { sqlJsCDN: DEFAULT_SQLJS_CDN, shape: 'tables' }, gis: {} } } as const satisfies LoaderWithParser< GeoJSONTable | Tables<GeoJSONTable>, never, GeoPackageLoaderOptions >;