2017-05-06 20:02:26 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { AgmCoreModule } from '@agm/core';
|
2018-01-04 15:49:27 +03:00
|
|
|
import { LeafletModule } from '@asymmetrik/ngx-leaflet';
|
|
|
|
|
import { NgxEchartsModule } from 'ngx-echarts';
|
2017-05-06 20:02:26 +03:00
|
|
|
|
2017-08-04 19:27:16 +03:00
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
2017-05-06 20:02:26 +03:00
|
|
|
import { MapsRoutingModule, routedComponents } from './maps-routing.module';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
2017-08-04 19:27:16 +03:00
|
|
|
ThemeModule,
|
2018-02-19 20:17:38 +03:00
|
|
|
AgmCoreModule.forRoot({
|
|
|
|
|
apiKey: 'AIzaSyCpVhQiwAllg1RAFaxMWSpQruuGARy0Y1k',
|
|
|
|
|
libraries: ['places'],
|
|
|
|
|
}),
|
2017-05-06 20:02:26 +03:00
|
|
|
LeafletModule.forRoot(),
|
|
|
|
|
MapsRoutingModule,
|
2018-01-04 15:49:27 +03:00
|
|
|
NgxEchartsModule,
|
2017-05-06 20:02:26 +03:00
|
|
|
],
|
|
|
|
|
exports: [],
|
|
|
|
|
declarations: [
|
|
|
|
|
...routedComponents,
|
|
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
export class MapsModule { }
|