File tree Expand file tree Collapse file tree 5 files changed +186
-597
lines changed Expand file tree Collapse file tree 5 files changed +186
-597
lines changed Original file line number Diff line number Diff line change 10
10
},
11
11
"private" : true ,
12
12
"dependencies" : {
13
- "@agm/core" : " ^3.0.0-beta" ,
14
- "@amcharts/amcharts5" : " ^5.2.6" ,
15
- "@amcharts/amcharts5-fonts" : " ^5.0.1" ,
16
- "@amcharts/amcharts5-geodata" : " ^5.0.3" ,
13
+ "@agm/core" : " ^1.1.0" ,
14
+
17
15
"@angular/animations" : " ^13.2.4" ,
18
16
"@angular/cdk" : " ^13.2.4" ,
19
17
"@angular/common" : " ~13.2.4" ,
49
47
"zone.js" : " ~0.11.4"
50
48
},
51
49
"devDependencies" : {
50
+ "@amcharts/amcharts4" : " ^4.9.37" ,
51
+ "@amcharts/amcharts4-geodata" : " ^4.1.17" ,
52
52
"@angular-devkit/build-angular" : " ~13.2.5" ,
53
53
"@angular/cli" : " ~13.2.5" ,
54
54
"@angular/compiler-cli" : " ~13.2.4" ,
55
55
"@angular/language-service" : " ~13.2.4" ,
56
56
"@angularclass/hmr" : " ^3.0.0" ,
57
57
"@types/jasmine" : " ~3.6.0" ,
58
58
"@types/jasminewd2" : " ~2.0.8" ,
59
+ "@types/echarts" : " ^4.6.7" ,
59
60
"@types/node" : " ^12.12.64" ,
60
61
"codelyzer" : " ^6.0.0" ,
61
62
"ts-node" : " ~8.3.0" ,
Original file line number Diff line number Diff line change @@ -69,11 +69,11 @@ const route: Routes = [
69
69
canActivate : [ AuthGuard ] ,
70
70
loadChildren : ( ) => import ( './modules/templates/charts/charts.module' ) . then ( m => m . ChartsModule )
71
71
} ,
72
- // {
73
- // path: 'maps',
74
- // canActivate: [AuthGuard],
75
- // loadChildren: () => import('./modules/templates/maps/maps.module').then(m => m.MapsModule)
76
- // },
72
+ {
73
+ path : 'maps' ,
74
+ canActivate : [ AuthGuard ] ,
75
+ loadChildren : ( ) => import ( './modules/templates/maps/maps.module' ) . then ( m => m . MapsModule )
76
+ } ,
77
77
// {
78
78
// path: 'extra',
79
79
// canActivate: [AuthGuard],
Original file line number Diff line number Diff line change 1
1
import { RouterModule , Routes } from '@angular/router' ;
2
2
import { NgModule } from '@angular/core' ;
3
- import { GoogleMapPageComponent , VectorMapPageComponent } from './components' ;
3
+ import { GoogleMapPageComponent } from './components' ;
4
+ import { VectorMapPageComponent } from './components' ;
4
5
5
6
const routes : Routes = [
6
7
{
Original file line number Diff line number Diff line change 1
1
import { NgModule } from '@angular/core' ;
2
2
import { CommonModule } from '@angular/common' ;
3
+ import { MatCardModule } from '@angular/material/card' ;
3
4
import { AgmCoreModule } from '@agm/core' ;
5
+
4
6
import { googleMapKey } from './consts' ;
5
7
import { GoogleMapPageComponent } from './components' ;
6
8
import { SharedModule } from '../../../shared/shared.module' ;
7
- import { MatCardModule } from '@angular/material/card' ;
8
9
import { MapsRoutingModule } from './map-routing.module' ;
9
10
import { VectorMapPageComponent } from './components' ;
10
11
11
12
@NgModule ( {
12
13
declarations : [
13
- // GoogleMapPageComponent,
14
- // VectorMapPageComponent
14
+ GoogleMapPageComponent ,
15
+ VectorMapPageComponent
15
16
] ,
16
17
imports : [
17
18
CommonModule ,
You can’t perform that action at this time.
0 commit comments