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