import { Component, Input, Injectable} from '@angular/core'; import { Feature } from 'ol'; import { Store } from '@ngrx/store'; import * as mapReducers from '../../reducers/map.reducer'; import { commonReducers,ItemTypeService,AppConfig } from '@farmmaps/common'; import { AbstractFeatureListFeatureComponent } from '../feature-list-feature/feature-list-feature.component'; import { ForItemType } from '../for-item/for-itemtype.decorator'; @ForItemType("vnd.farmmaps.itemtype.croppingscheme") @Injectable() @Component({ selector: 'feature-list-feature-croppingscheme', templateUrl: './feature-list-feature-croppingscheme.component.html', styleUrls: ['./feature-list-feature-croppingscheme.component.scss'] }) export class FeatureListFeatureCroppingschemeComponent extends AbstractFeatureListFeatureComponent { constructor(store: Store, itemTypeService: ItemTypeService,config:AppConfig) { super(store, itemTypeService,config); } }