2017-05-06 20:02:26 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { AgmCoreModule } from '@agm/core';
|
|
|
|
|
import { LeafletModule } from '@asymmetrik/angular2-leaflet';
|
2017-07-26 15:40:20 +03:00
|
|
|
import { AngularEchartsModule } from 'ngx-echarts';
|
2017-05-06 20:02:26 +03:00
|
|
|
|
|
|
|
|
import { SharedModule } from '../../shared.module';
|
|
|
|
|
import { MapsRoutingModule, routedComponents } from './maps-routing.module';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
SharedModule,
|
|
|
|
|
AgmCoreModule.forRoot(),
|
|
|
|
|
LeafletModule.forRoot(),
|
|
|
|
|
MapsRoutingModule,
|
2017-07-26 15:40:20 +03:00
|
|
|
AngularEchartsModule,
|
2017-05-06 20:02:26 +03:00
|
|
|
],
|
|
|
|
|
exports: [],
|
|
|
|
|
declarations: [
|
|
|
|
|
...routedComponents,
|
|
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
export class MapsModule { }
|