mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-23 10:50:13 +01:00
feat(maps): add the gmaps and the leaflet component pages
This commit is contained in:
parent
e5f3f211f9
commit
6d8d55c8cc
18 changed files with 180 additions and 27 deletions
21
src/app/pages/maps/maps.module.ts
Normal file
21
src/app/pages/maps/maps.module.ts
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { AgmCoreModule } from '@agm/core';
|
||||
import { LeafletModule } from '@asymmetrik/angular2-leaflet';
|
||||
|
||||
import { SharedModule } from '../../shared.module';
|
||||
|
||||
import { MapsRoutingModule, routedComponents } from './maps-routing.module';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
SharedModule,
|
||||
AgmCoreModule.forRoot(),
|
||||
LeafletModule.forRoot(),
|
||||
MapsRoutingModule,
|
||||
],
|
||||
exports: [],
|
||||
declarations: [
|
||||
...routedComponents,
|
||||
],
|
||||
})
|
||||
export class MapsModule { }
|
||||
Loading…
Add table
Add a link
Reference in a new issue