svelte-maplibre-gl
Version:
Build interactive web maps effortlessly with MapLibre GL JS and Svelte
13 lines (12 loc) • 397 B
TypeScript
import type { Snippet } from 'svelte';
import maplibregl from 'maplibre-gl';
interface Props {
position?: maplibregl.ControlPosition;
control?: maplibregl.IControl;
group?: boolean;
class?: string;
children?: Snippet;
}
declare const CustomControl: import("svelte").Component<Props, {}, "">;
type CustomControl = ReturnType<typeof CustomControl>;
export default CustomControl;