UNPKG

svelte-maplibre-gl

Version:

Build interactive web maps effortlessly with MapLibre GL JS and Svelte

8 lines (7 loc) 293 B
import * as maplibregl from 'maplibre-gl'; interface Props extends maplibregl.LogoControlOptions { position?: maplibregl.ControlPosition; } declare const LogoControl: import("svelte").Component<Props, {}, "">; type LogoControl = ReturnType<typeof LogoControl>; export default LogoControl;