Renamed prefixes in angular.json
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good

This commit is contained in:
Willem Dantuma
2019-11-04 13:43:46 +01:00
parent c32214f544
commit cec43a636c
183 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,26 @@
import { IItem } from '@farmmaps/common';
import {Layer} from 'ol/layer';
export interface IItemLayer {
item: IItem,
layer: Layer,
visible: boolean,
legendVisible:boolean,
projection: string,
opacity: number,
layerIndex:number
}
export class ItemLayer implements IItemLayer {
public item: IItem;
public layer: Layer = null;
public visible: boolean = true;
public legendVisible: boolean = false;
public projection: string;
public opacity: number = 1;
public layerIndex: number = -1;
constructor(item:IItem) {
this.item = item;
}
}