react-bkoi-gl
Version:
React components for Barikoi GL JS
13 lines (12 loc) • 625 B
TypeScript
import * as React from "react";
import type { ControlPosition, FullscreenControlOptions } from "../types/lib";
export type FullscreenControlProps = Omit<FullscreenControlOptions, "container"> & {
/** Id of the DOM element which should be made full screen. By default, the map container
* element will be made full screen. */
containerId?: string;
/** Placement of the control relative to the map. */
position?: ControlPosition;
/** CSS style override, applied to the control's container */
style?: React.CSSProperties;
};
export declare const FullscreenControl: React.FC<FullscreenControlProps>;