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