svelte-maplibre-gl
Version:
Build interactive web maps effortlessly with MapLibre GL JS and Svelte
11 lines (10 loc) • 432 B
TypeScript
import type { Snippet } from 'svelte';
import maplibregl from 'maplibre-gl';
interface Props extends Omit<maplibregl.RasterDEMSourceSpecification, 'type'> {
id?: string;
source?: maplibregl.RasterDEMTileSource;
children?: Snippet;
}
declare const RasterDemTileSource: import("svelte").Component<Props, {}, "source">;
type RasterDemTileSource = ReturnType<typeof RasterDemTileSource>;
export default RasterDemTileSource;