@developmentseed/stac-map
    Preparing search index...

    Interface StacMapProps

    interface StacMapProps {
        auth?: AuthProviderProps;
        chakraSystem?: SystemContext;
        colorMode?: Omit<ThemeProviderProps, "children">;
        defaultHref?: string;
        disableChakraProvider?: boolean;
        examples?: Example[];
        extraLayers?: ExtraLayerProps[];
        footer?: ReactNode;
        queryClient?: QueryClient;
        stacBrowserUrl?: string;
    }
    Index

    Properties

    auth?: AuthProviderProps

    Wrap the inner tree in react-oidc-context AuthProvider with these settings.

    chakraSystem?: SystemContext

    Override the Chakra UI system. Defaults to defaultSystem.

    colorMode?: Omit<ThemeProviderProps, "children">

    Forwarded to the internal next-themes ColorModeProvider.

    defaultHref?: string

    Initial STAC URL to load on mount when no ?href= is present in the URL.

    disableChakraProvider?: boolean

    Skip the internal ChakraProvider and ColorModeProvider. Use when the host app already mounts its own Chakra v3 system and next-themes provider; the chakraSystem and colorMode props are ignored when true.

    examples?: Example[]

    Override the list of example STAC resources shown in the Examples menu. Pass an empty array to hide the Examples button entirely. Defaults to a built-in list of public STAC catalogs and APIs.

    extraLayers?: ExtraLayerProps[]

    Source and layer information for extra maplibre layers

    footer?: ReactNode

    Optional footer rendered below the map (e.g. version + changelog).

    queryClient?: QueryClient

    Reuse a host-app QueryClient instead of the internal one.

    stacBrowserUrl?: string

    Override the STAC Browser external link prefix.