mapillary-js
Version:
WebGL JavaScript library for displaying street level imagery from mapillary.com
14 lines (11 loc) • 342 B
text/typescript
import { IComponentConfiguration } from "./interfaces";
import ComponentSize from "../utils/ComponentSize";
export interface IZoomConfiguration extends IComponentConfiguration {
/**
* The size of the ui elements.
*
* @default ComponentSize.Automatic
*/
size?: ComponentSize;
}
export default IZoomConfiguration;