svelte-local-gpx-viewer
Version:
Local-first GPX routes viewer. Svelte-based components. Useable in Svelte projects and standalone (vanilla JS).
9 lines (8 loc) • 322 B
TypeScript
import type { StyleSpecification } from 'maplibre-gl';
type $$ComponentProps = {
mapStyle: string | StyleSpecification;
pitch: number;
};
declare const MapLibreWrapper: import("svelte").Component<$$ComponentProps, {}, "">;
type MapLibreWrapper = ReturnType<typeof MapLibreWrapper>;
export default MapLibreWrapper;