mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-28 21:28:50 +01:00
25 lines
663 B
TypeScript
25 lines
663 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { AgmCoreModule } from '@agm/core';
|
|
import { LeafletModule } from '@asymmetrik/ngx-leaflet';
|
|
import { NgxEchartsModule } from 'ngx-echarts';
|
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
|
import { MapsRoutingModule, routedComponents } from './maps-routing.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
ThemeModule,
|
|
AgmCoreModule.forRoot({
|
|
apiKey: 'AIzaSyCpVhQiwAllg1RAFaxMWSpQruuGARy0Y1k',
|
|
libraries: ['places'],
|
|
}),
|
|
LeafletModule.forRoot(),
|
|
MapsRoutingModule,
|
|
NgxEchartsModule,
|
|
],
|
|
exports: [],
|
|
declarations: [
|
|
...routedComponents,
|
|
],
|
|
})
|
|
export class MapsModule { }
|