2020-03-30 12:06:51 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
2020-03-03 17:23:14 +03:00
|
|
|
import { GoogleMapsModule } from '@angular/google-maps';
|
2020-03-30 12:06:51 +03:00
|
|
|
import { LeafletModule } from '@asymmetrik/ngx-leaflet';
|
|
|
|
|
import { NgxEchartsModule } from 'ngx-echarts';
|
|
|
|
|
import { NbCardModule } from '@nebular/theme';
|
|
|
|
|
|
|
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
|
|
|
|
import { MapsRoutingModule, routedComponents } from './maps-routing.module';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
ThemeModule,
|
2020-03-03 17:23:14 +03:00
|
|
|
GoogleMapsModule,
|
2020-03-30 12:06:51 +03:00
|
|
|
LeafletModule.forRoot(),
|
|
|
|
|
MapsRoutingModule,
|
|
|
|
|
NgxEchartsModule,
|
|
|
|
|
NbCardModule,
|
|
|
|
|
],
|
|
|
|
|
exports: [],
|
|
|
|
|
declarations: [
|
|
|
|
|
...routedComponents,
|
|
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
export class MapsModule { }
|