svelte-maplibre-gl
Version:
Build interactive web maps effortlessly with MapLibre GL JS and Svelte
9 lines (8 loc) • 344 B
TypeScript
import * as maplibregl from 'maplibre-gl';
interface Props extends Omit<maplibregl.TerrainSpecification, 'source'> {
source?: string;
position?: maplibregl.ControlPosition;
}
declare const TerrainControl: import("svelte").Component<Props, {}, "">;
type TerrainControl = ReturnType<typeof TerrainControl>;
export default TerrainControl;