/* * @Author: your name * @Date: 2022-04-11 15:20:44 * @Description: 布局配置 * @FilePath: /zl-large-screen/src/options/layout.ts */ import { ILayoutOpt } from '../type/largeScreenLayout'; import Contour from '../components/LargeScreenLayer/LargeScreenAddGISChild/contour.svg'; import Icon from '../components/LargeScreenLayer/LargeScreenAddGISChild/icon.svg'; const layoutOpts: ILayoutOpt[] = []; export default layoutOpts; export const gisChildLayer = [ { key: 'contour', title: '轮廓填充图层', img: Contour }, { key: 'icon', title: '符号点位图层', img: Icon } ]; export const alignList= [ { title: '左对齐', key: 'left', icon: 'icon-zuoduiqi1' }, { title: '左右居中对齐', key: 'horizontalCenter', icon: 'icon-juzhongduiqi1' }, { title: '右对齐', key: 'right', icon: 'icon-youduiqi1' }, { title: '顶部对齐', key: 'top', icon: 'icon-dingduiqi' }, { title: '上下居中对齐', key: 'verticalCenter', icon: 'icon-chuizhijuzhongduiqi' }, { title: '底部对齐', key: 'bottom', icon: 'icon-diduiqi' } ]