UNPKG

svelte-maplibre-gl

Version:

Build interactive web maps effortlessly with MapLibre GL JS and Svelte

9 lines (8 loc) 339 B
import maplibregl from 'maplibre-gl'; interface Props extends Omit<maplibregl.TerrainSpecification, 'source'> { source?: string; position?: maplibregl.ControlPosition; } declare const TerrainControl: import("svelte").Component<Props, {}, "">; type TerrainControl = ReturnType<typeof TerrainControl>; export default TerrainControl;