oneframe-react
Version:
Oneframe React ## Components, Hooks, Helper Functions & State Management
22 lines (21 loc) • 547 B
TypeScript
import React from 'react';
interface IProps {
width: string;
height: string | number;
center?: ICenter;
zoom?: number;
controlSize?: number;
bounds?: number[];
draggable?: boolean;
controlIcons?: boolean;
direction?: boolean;
boundaryPolygonFit?: boolean;
fullscreenIcon?: boolean;
readonly children: any;
}
interface ICenter {
lat: number;
lng: number;
}
declare const _default: React.MemoExoticComponent<React.MemoExoticComponent<(props: IProps) => JSX.Element>>;
export default _default;