@@ -4,7 +4,7 @@ import { FormsModule } from '@angular/forms';
4
4
import { MatButtonToggleModule , MatRadioModule , MatButtonModule } from '@angular/material' ;
5
5
import { BrowserAnimationsModule } from '@angular/platform-browser/animations' ;
6
6
import { RouterModule , Routes } from '@angular/router' ;
7
- import { NgxMapboxGLModule } from '../lib/lib.module ' ;
7
+ import { NgxMapboxGLModule } from '../lib' ;
8
8
import { AddImageGeneratedComponent } from './examples/add-image-generated.component' ;
9
9
import { AddImageComponent } from './examples/add-image.component' ;
10
10
import { AttachPopupComponent } from './examples/attach-popup.component' ;
@@ -29,7 +29,9 @@ import { LocateUserComponent } from './examples/locate-user.component';
29
29
import { NgxAttributionComponent } from './examples/ngx-attribution.component' ;
30
30
import { NgxScaleControlComponent } from './examples/ngx-scale-control.component' ;
31
31
import { NgxCustomControlComponent } from './examples/ngx-custom-control.component' ;
32
- import { InteractiveFalseComponent } from './examples/interactive-false' ;
32
+ import { InteractiveFalseComponent } from './examples/interactive-false.component' ;
33
+ import { LanguageSwitchComponent } from './examples/language-switch.component' ;
34
+ import { CenterOnSymbolComponent } from './examples/center-on-symbol.component' ;
33
35
34
36
export const demoRoutes : Routes = [
35
37
{ path : '' , component : IndexComponent } ,
@@ -56,6 +58,8 @@ export const demoRoutes: Routes = [
56
58
{ path : 'ngx-scale-control' , component : NgxScaleControlComponent } ,
57
59
{ path : 'ngx-custom-control' , component : NgxCustomControlComponent } ,
58
60
{ path : 'interactive-false' , component : InteractiveFalseComponent } ,
61
+ { path : 'language-switch' , component : LanguageSwitchComponent } ,
62
+ { path : 'ngx-center-on-symbol' , component : CenterOnSymbolComponent } ,
59
63
] ;
60
64
61
65
@NgModule ( {
@@ -96,7 +100,9 @@ export const demoRoutes: Routes = [
96
100
NgxAttributionComponent ,
97
101
NgxScaleControlComponent ,
98
102
NgxCustomControlComponent ,
99
- InteractiveFalseComponent
103
+ InteractiveFalseComponent ,
104
+ LanguageSwitchComponent ,
105
+ CenterOnSymbolComponent
100
106
]
101
107
} )
102
108
export class DemoModule { }
0 commit comments