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