@expofp/floorplan
Version:
Interactive floor plan library for expos and events
28 lines • 809 B
TypeScript
import "./MapControls.scss";
import React from "react";
export interface MapControlLayersItem {
id: string;
name: string;
}
export interface MapControlsProps {
className?: string;
style?: React.CSSProperties;
title: string;
titles: string[];
viewModeSwitch: boolean;
findLocation: boolean;
viewMode: boolean;
layersOpen?: boolean;
layersList?: MapControlLayersItem[];
layersActiveItems?: string[];
layersWidth?: number;
onViewModeSwitch: () => void;
onClickFindLocation: () => void;
onClickZoomIn: () => void;
onClickZoomOut: () => void;
onClickByWidth: () => void;
onChangeLayers: (value: string) => void;
}
declare const MapControls: React.FC<MapControlsProps>;
export default MapControls;
//# sourceMappingURL=MapControls.d.ts.map