WebMap Service
Configuration
@NgModule({ declarations: [ AppComponent ], imports: [ WebMapModule ], providers: [ { provide: WEBMAP_CONFIG, useValue: { useDynamicServerEvents: false }}, WebMapService ], bootstrap: [ AppComponent ] }) export class AppModule { }@NgModule({ declarations: [ AppComponent ], imports: [ WebMapModule ], providers: [ WebMapService.provide({ useDynamicServerEvents: false }) ], bootstrap: [ AppComponent ] }) export class AppModule { }
Configuration Object Example
Last updated
Was this helpful?