FarmMapsLib/projects/common-map/src/fm-map/components/feature-list-feature-cropfield/feature-list-feature-cropfi...

23 lines
972 B
TypeScript
Raw Normal View History

2019-10-28 13:18:25 +00:00
import { Component, Input, Injectable} from '@angular/core';
import { Feature } from 'ol';
import { Store } from '@ngrx/store';
import * as mapReducers from '../../reducers/map.reducer';
2019-11-01 14:57:50 +00:00
import { commonReducers,ItemTypeService,AppConfig } from '@farmmaps/common';
2019-10-28 13:18:25 +00:00
import { AbstractFeatureListFeatureComponent } from '../feature-list-feature/feature-list-feature.component';
import { ForItemType } from '../for-item/for-itemtype.decorator';
@ForItemType("vnd.farmmaps.itemtype.cropfield")
@Injectable()
@Component({
2019-11-04 12:34:00 +00:00
selector: 'fm-map-feature-list-feature-cropfield',
2019-10-28 13:18:25 +00:00
templateUrl: './feature-list-feature-cropfield.component.html',
styleUrls: ['./feature-list-feature-cropfield.component.scss']
})
export class FeatureListFeatureCropfieldComponent extends AbstractFeatureListFeatureComponent {
2019-11-01 14:57:50 +00:00
constructor(store: Store<mapReducers.State | commonReducers.State>, itemTypeService: ItemTypeService,config:AppConfig) {
super(store, itemTypeService,config);
2019-10-28 13:18:25 +00:00
}
}