UNPKG

gis-tools-ts

Version:

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.

14 lines 541 B
import type { BuildGuide } from './types.js'; import type { VectorFeatures } from '../../index.js'; export * from './types.js'; /** * Build vector tiles give a guide on what sources to parse data from and how to store it * @param buildGuide - the user defined guide on building the vector tiles */ export declare function toTiles(buildGuide: BuildGuide): Promise<void>; /** A result of a feature iterator */ export interface FeatureIterateResult { sourceName: string; feature: VectorFeatures; } //# sourceMappingURL=index.d.ts.map