geomon.viewer/src/common/components/components.module.ts
Arno Kaimbacher feab502c1d - add npm packages: "@fortawesome/angular-fontawesome, @fortawesome/fontawesome-svg-core, @fortawesome/free-solid-svg-icons
- add locate.service.ts, map-cache.service.ts
- add mapCache Service to map component
- notes
2021-09-08 14:40:57 +02:00

29 lines
No EOL
851 B
TypeScript

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
// import { HelgolandCoreModule } from '@helgoland/core';
// import { HelgolandMapModule } from '@helgoland/map';
import { LocateButtonComponent } from './locate-button/locate-button.component';
// import { LocateService } from '@helgoland/map';
// import { MapCache } from '@helgoland/map';
import { MapCache } from './services/map-cache.service';
import { LocateService } from './services/locate.service';
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
@NgModule({
imports: [
CommonModule, FontAwesomeModule
],
declarations: [
LocateButtonComponent,
],
exports: [
LocateButtonComponent,
],
providers: [
// LocateService,
MapCache, LocateService
]
})
export class ComponentsModule { }