@igo2/core 1.14.1 → 1.14.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. package/__ivy_ngcc__/locale/en.geo.json +22 -8
  2. package/__ivy_ngcc__/locale/en.json +22 -8
  3. package/__ivy_ngcc__/locale/fr.geo.json +17 -3
  4. package/__ivy_ngcc__/locale/fr.json +17 -3
  5. package/esm2020/igo2-core.mjs +4 -4
  6. package/esm2020/lib/activity/activity.interceptor.mjs +29 -29
  7. package/esm2020/lib/activity/activity.module.mjs +29 -29
  8. package/esm2020/lib/activity/activity.service.mjs +32 -32
  9. package/esm2020/lib/activity/index.mjs +2 -2
  10. package/esm2020/lib/analytics/index.mjs +1 -1
  11. package/esm2020/lib/analytics/shared/analytics.interface.mjs +1 -1
  12. package/esm2020/lib/analytics/shared/analytics.service.mjs +73 -73
  13. package/esm2020/lib/analytics/shared/index.mjs +2 -2
  14. package/esm2020/lib/compression/compressedData.interface.mjs +1 -1
  15. package/esm2020/lib/compression/compression.service.mjs +139 -139
  16. package/esm2020/lib/compression/index.mjs +2 -2
  17. package/esm2020/lib/config/config.interface.mjs +1 -1
  18. package/esm2020/lib/config/config.module.mjs +22 -22
  19. package/esm2020/lib/config/config.provider.mjs +20 -20
  20. package/esm2020/lib/config/config.service.mjs +51 -51
  21. package/esm2020/lib/config/index.mjs +3 -3
  22. package/esm2020/lib/config/version.mjs +5 -5
  23. package/esm2020/lib/core.module.mjs +83 -83
  24. package/esm2020/lib/gesture/gesture.module.mjs +29 -29
  25. package/esm2020/lib/gesture/gesture.provider.mjs +15 -15
  26. package/esm2020/lib/language/index.mjs +1 -1
  27. package/esm2020/lib/language/language.module.mjs +38 -38
  28. package/esm2020/lib/language/shared/index.mjs +4 -4
  29. package/esm2020/lib/language/shared/language.interface.mjs +1 -1
  30. package/esm2020/lib/language/shared/language.loader.mjs +26 -26
  31. package/esm2020/lib/language/shared/language.provider.mjs +21 -21
  32. package/esm2020/lib/language/shared/language.service.mjs +32 -32
  33. package/esm2020/lib/language/shared/missing-translation.guard.mjs +14 -14
  34. package/esm2020/lib/media/index.mjs +2 -2
  35. package/esm2020/lib/media/media.enum.mjs +11 -11
  36. package/esm2020/lib/media/media.service.mjs +75 -75
  37. package/esm2020/lib/message/index.mjs +1 -1
  38. package/esm2020/lib/message/message.module.mjs +55 -55
  39. package/esm2020/lib/message/shared/index.mjs +3 -3
  40. package/esm2020/lib/message/shared/message.enum.mjs +9 -9
  41. package/esm2020/lib/message/shared/message.interface.mjs +1 -1
  42. package/esm2020/lib/message/shared/message.service.mjs +192 -192
  43. package/esm2020/lib/network/index.mjs +2 -2
  44. package/esm2020/lib/network/network.interfaces.mjs +1 -1
  45. package/esm2020/lib/network/network.service.mjs +66 -66
  46. package/esm2020/lib/regex/index.mjs +3 -0
  47. package/esm2020/lib/regex/regex.interface.mjs +2 -0
  48. package/esm2020/lib/regex/regex.service.mjs +27 -0
  49. package/esm2020/lib/request/error.interceptor.mjs +65 -65
  50. package/esm2020/lib/request/error.module.mjs +38 -38
  51. package/esm2020/lib/request/index.mjs +2 -2
  52. package/esm2020/lib/request/logging.interceptor.mjs +27 -27
  53. package/esm2020/lib/request/logging.module.mjs +29 -29
  54. package/esm2020/lib/route/route.interface.mjs +1 -1
  55. package/esm2020/lib/route/route.service.mjs +70 -70
  56. package/esm2020/lib/storage/index.mjs +2 -2
  57. package/esm2020/lib/storage/storage.interface.mjs +12 -12
  58. package/esm2020/lib/storage/storage.service.mjs +78 -78
  59. package/esm2020/public_api.mjs +28 -27
  60. package/fesm2015/igo2-core.mjs +1313 -1287
  61. package/fesm2015/igo2-core.mjs.map +1 -1
  62. package/fesm2020/igo2-core.mjs +1259 -1235
  63. package/fesm2020/igo2-core.mjs.map +1 -1
  64. package/index.d.ts +5 -5
  65. package/lib/activity/activity.interceptor.d.ts +11 -11
  66. package/lib/activity/activity.module.d.ts +8 -8
  67. package/lib/activity/activity.service.d.ts +11 -11
  68. package/lib/activity/index.d.ts +2 -2
  69. package/lib/analytics/index.d.ts +1 -1
  70. package/lib/analytics/shared/analytics.interface.d.ts +6 -6
  71. package/lib/analytics/shared/analytics.service.d.ts +19 -19
  72. package/lib/analytics/shared/index.d.ts +2 -2
  73. package/lib/compression/compressedData.interface.d.ts +5 -5
  74. package/lib/compression/compression.service.d.ts +15 -15
  75. package/lib/compression/index.d.ts +2 -2
  76. package/lib/config/config.interface.d.ts +6 -6
  77. package/lib/config/config.module.d.ts +8 -8
  78. package/lib/config/config.provider.d.ts +15 -15
  79. package/lib/config/config.service.d.ts +18 -18
  80. package/lib/config/index.d.ts +3 -3
  81. package/lib/config/version.d.ts +5 -5
  82. package/lib/core.module.d.ts +19 -19
  83. package/lib/gesture/gesture.module.d.ts +9 -9
  84. package/lib/gesture/gesture.provider.d.ts +7 -7
  85. package/lib/language/index.d.ts +1 -1
  86. package/lib/language/language.module.d.ts +9 -9
  87. package/lib/language/shared/index.d.ts +4 -4
  88. package/lib/language/shared/language.interface.d.ts +3 -3
  89. package/lib/language/shared/language.loader.d.ts +11 -11
  90. package/lib/language/shared/language.provider.d.ts +15 -15
  91. package/lib/language/shared/language.service.d.ts +13 -13
  92. package/lib/language/shared/missing-translation.guard.d.ts +4 -4
  93. package/lib/media/index.d.ts +2 -2
  94. package/lib/media/media.enum.d.ts +9 -9
  95. package/lib/media/media.service.d.ts +16 -16
  96. package/lib/message/index.d.ts +1 -1
  97. package/lib/message/message.module.d.ts +10 -10
  98. package/lib/message/shared/index.d.ts +4 -4
  99. package/lib/message/shared/message.enum.d.ts +8 -8
  100. package/lib/message/shared/message.interface.d.ts +21 -21
  101. package/lib/message/shared/message.service.d.ts +31 -31
  102. package/lib/network/index.d.ts +2 -2
  103. package/lib/network/network.interfaces.d.ts +3 -3
  104. package/lib/network/network.service.d.ts +21 -21
  105. package/lib/regex/index.d.ts +2 -0
  106. package/lib/regex/regex.interface.d.ts +3 -0
  107. package/lib/regex/regex.service.d.ts +12 -0
  108. package/lib/request/error.interceptor.d.ts +14 -14
  109. package/lib/request/error.module.d.ts +9 -9
  110. package/lib/request/index.d.ts +2 -2
  111. package/lib/request/logging.interceptor.d.ts +8 -8
  112. package/lib/request/logging.module.d.ts +8 -8
  113. package/lib/route/route.interface.d.ts +23 -23
  114. package/lib/route/route.service.d.ts +19 -19
  115. package/lib/storage/index.d.ts +2 -2
  116. package/lib/storage/storage.interface.d.ts +20 -20
  117. package/lib/storage/storage.service.d.ts +19 -19
  118. package/locale/en.geo.json +22 -8
  119. package/locale/en.json +22 -8
  120. package/locale/fr.geo.json +17 -3
  121. package/locale/fr.json +17 -3
  122. package/package.json +2 -2
  123. package/public_api.d.ts +24 -23
@@ -1,31 +1,31 @@
1
- import { Injector } from '@angular/core';
2
- import { HttpErrorResponse } from '@angular/common/http';
3
- import { BehaviorSubject } from 'rxjs';
4
- import { ConfigService } from '../../config/config.service';
5
- import { Message } from './message.interface';
6
- import { ActiveToast, IndividualConfig } from 'ngx-toastr';
7
- import { LanguageService } from '../../language/shared/language.service';
8
- import * as i0 from "@angular/core";
9
- export declare class MessageService {
10
- private injector;
11
- private configService;
12
- private languageService;
13
- messages$: BehaviorSubject<Message[]>;
14
- private options;
15
- private activeMessageTranslations;
16
- constructor(injector: Injector, configService: ConfigService, languageService: LanguageService);
17
- private get toastr();
18
- showError(httpError: HttpErrorResponse): ActiveToast<any>;
19
- message(message: Message): void;
20
- success(text: string, title?: string, options?: Partial<IndividualConfig>, textInterpolateParams?: Object, titleInterpolateParams?: Object): ActiveToast<any>;
21
- error(text: string, title?: string, options?: Partial<IndividualConfig>, textInterpolateParams?: Object, titleInterpolateParams?: Object): ActiveToast<any>;
22
- info(text: string, title?: string, options?: Partial<IndividualConfig>, textInterpolateParams?: Object, titleInterpolateParams?: Object): ActiveToast<any>;
23
- alert(text: string, title?: string, options?: Partial<IndividualConfig>, textInterpolateParams?: Object, titleInterpolateParams?: Object): ActiveToast<any>;
24
- show(text: string, title?: string, options?: Partial<IndividualConfig>, textInterpolateParams?: Object, titleInterpolateParams?: Object): ActiveToast<any>;
25
- private handleNgxToastr;
26
- remove(id?: number): void;
27
- removeAllAreNotError(): void;
28
- private handleTemplate;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<MessageService, never>;
30
- static ɵprov: i0.ɵɵInjectableDeclaration<MessageService>;
31
- }
1
+ import { Injector } from '@angular/core';
2
+ import { HttpErrorResponse } from '@angular/common/http';
3
+ import { BehaviorSubject } from 'rxjs';
4
+ import { ConfigService } from '../../config/config.service';
5
+ import { Message } from './message.interface';
6
+ import { ActiveToast, IndividualConfig } from 'ngx-toastr';
7
+ import { LanguageService } from '../../language/shared/language.service';
8
+ import * as i0 from "@angular/core";
9
+ export declare class MessageService {
10
+ private injector;
11
+ private configService;
12
+ private languageService;
13
+ messages$: BehaviorSubject<Message[]>;
14
+ private options;
15
+ private activeMessageTranslations;
16
+ constructor(injector: Injector, configService: ConfigService, languageService: LanguageService);
17
+ private get toastr();
18
+ showError(httpError: HttpErrorResponse): ActiveToast<any>;
19
+ message(message: Message): void;
20
+ success(text: string, title?: string, options?: Partial<IndividualConfig>, textInterpolateParams?: Object, titleInterpolateParams?: Object): ActiveToast<any>;
21
+ error(text: string, title?: string, options?: Partial<IndividualConfig>, textInterpolateParams?: Object, titleInterpolateParams?: Object): ActiveToast<any>;
22
+ info(text: string, title?: string, options?: Partial<IndividualConfig>, textInterpolateParams?: Object, titleInterpolateParams?: Object): ActiveToast<any>;
23
+ alert(text: string, title?: string, options?: Partial<IndividualConfig>, textInterpolateParams?: Object, titleInterpolateParams?: Object): ActiveToast<any>;
24
+ show(text: string, title?: string, options?: Partial<IndividualConfig>, textInterpolateParams?: Object, titleInterpolateParams?: Object): ActiveToast<any>;
25
+ private handleNgxToastr;
26
+ remove(id?: number): void;
27
+ removeAllAreNotError(): void;
28
+ private handleTemplate;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<MessageService, never>;
30
+ static ɵprov: i0.ɵɵInjectableDeclaration<MessageService>;
31
+ }
@@ -1,2 +1,2 @@
1
- export * from './network.service';
2
- export * from './network.interfaces';
1
+ export * from './network.service';
2
+ export * from './network.interfaces';
@@ -1,3 +1,3 @@
1
- export interface ConnectionState {
2
- connection: boolean;
3
- }
1
+ export interface ConnectionState {
2
+ connection: boolean;
3
+ }
@@ -1,21 +1,21 @@
1
- import { OnDestroy, Injector } from '@angular/core';
2
- import { Observable } from 'rxjs';
3
- import { MessageService } from '../message/shared/message.service';
4
- import { ConnectionState } from './network.interfaces';
5
- import * as i0 from "@angular/core";
6
- export declare class NetworkService implements OnDestroy {
7
- private messageService;
8
- private injector;
9
- private stateChangeEventEmitter;
10
- private onlineSubscription;
11
- private offlineSubscription;
12
- private previousMessageId;
13
- private state;
14
- constructor(messageService: MessageService, injector: Injector);
15
- private checkNetworkState;
16
- private emitEvent;
17
- ngOnDestroy(): void;
18
- currentState(reportState?: boolean): Observable<ConnectionState>;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<NetworkService, never>;
20
- static ɵprov: i0.ɵɵInjectableDeclaration<NetworkService>;
21
- }
1
+ import { OnDestroy, Injector } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { MessageService } from '../message/shared/message.service';
4
+ import { ConnectionState } from './network.interfaces';
5
+ import * as i0 from "@angular/core";
6
+ export declare class NetworkService implements OnDestroy {
7
+ private messageService;
8
+ private injector;
9
+ private stateChangeEventEmitter;
10
+ private onlineSubscription;
11
+ private offlineSubscription;
12
+ private previousMessageId;
13
+ private state;
14
+ constructor(messageService: MessageService, injector: Injector);
15
+ private checkNetworkState;
16
+ private emitEvent;
17
+ ngOnDestroy(): void;
18
+ currentState(reportState?: boolean): Observable<ConnectionState>;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<NetworkService, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<NetworkService>;
21
+ }
@@ -0,0 +1,2 @@
1
+ export * from './regex.service';
2
+ export * from './regex.interface';
@@ -0,0 +1,3 @@
1
+ export interface RegexOptions {
2
+ [key: string]: any;
3
+ }
@@ -0,0 +1,12 @@
1
+ import { ConfigService } from '../config/config.service';
2
+ import { RegexOptions } from './regex.interface';
3
+ import * as i0 from "@angular/core";
4
+ export declare class RegexService {
5
+ private config;
6
+ protected options: RegexOptions;
7
+ constructor(config: ConfigService);
8
+ getAll(): RegexOptions;
9
+ get(key: any): any;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<RegexService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<RegexService>;
12
+ }
@@ -1,14 +1,14 @@
1
- import { Injector } from '@angular/core';
2
- import { HttpInterceptor, HttpHandler, HttpRequest, HttpEvent } from '@angular/common/http';
3
- import { Observable } from 'rxjs';
4
- import * as i0 from "@angular/core";
5
- export declare class ErrorInterceptor implements HttpInterceptor {
6
- private injector;
7
- constructor(injector: Injector);
8
- intercept(originalReq: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
9
- private handleError;
10
- private handleCaughtError;
11
- private handleUncaughtError;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<ErrorInterceptor, never>;
13
- static ɵprov: i0.ɵɵInjectableDeclaration<ErrorInterceptor>;
14
- }
1
+ import { Injector } from '@angular/core';
2
+ import { HttpInterceptor, HttpHandler, HttpRequest, HttpEvent } from '@angular/common/http';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ErrorInterceptor implements HttpInterceptor {
6
+ private injector;
7
+ constructor(injector: Injector);
8
+ intercept(originalReq: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
9
+ private handleError;
10
+ private handleCaughtError;
11
+ private handleUncaughtError;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorInterceptor, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<ErrorInterceptor>;
14
+ }
@@ -1,9 +1,9 @@
1
- import { ModuleWithProviders } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class IgoErrorModule {
4
- static forRoot(): ModuleWithProviders<IgoErrorModule>;
5
- constructor(parentModule: IgoErrorModule);
6
- static ɵfac: i0.ɵɵFactoryDeclaration<IgoErrorModule, [{ optional: true; skipSelf: true; }]>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<IgoErrorModule, never, never, never>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<IgoErrorModule>;
9
- }
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IgoErrorModule {
4
+ static forRoot(): ModuleWithProviders<IgoErrorModule>;
5
+ constructor(parentModule: IgoErrorModule);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgoErrorModule, [{ optional: true; skipSelf: true; }]>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgoErrorModule, never, never, never>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgoErrorModule>;
9
+ }
@@ -1,2 +1,2 @@
1
- export * from './error.interceptor';
2
- export * from './logging.interceptor';
1
+ export * from './error.interceptor';
2
+ export * from './logging.interceptor';
@@ -1,8 +1,8 @@
1
- import { HttpInterceptor, HttpHandler, HttpEvent, HttpRequest } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import * as i0 from "@angular/core";
4
- export declare class LoggingInterceptor implements HttpInterceptor {
5
- intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<LoggingInterceptor, never>;
7
- static ɵprov: i0.ɵɵInjectableDeclaration<LoggingInterceptor>;
8
- }
1
+ import { HttpInterceptor, HttpHandler, HttpEvent, HttpRequest } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LoggingInterceptor implements HttpInterceptor {
5
+ intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoggingInterceptor, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoggingInterceptor>;
8
+ }
@@ -1,8 +1,8 @@
1
- import { ModuleWithProviders } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class IgoLoggingModule {
4
- static forRoot(): ModuleWithProviders<IgoLoggingModule>;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<IgoLoggingModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<IgoLoggingModule, never, never, never>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<IgoLoggingModule>;
8
- }
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IgoLoggingModule {
4
+ static forRoot(): ModuleWithProviders<IgoLoggingModule>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgoLoggingModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgoLoggingModule, never, never, never>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgoLoggingModule>;
8
+ }
@@ -1,23 +1,23 @@
1
- export interface RouteServiceOptions {
2
- centerKey?: boolean | string;
3
- zoomKey?: boolean | string;
4
- projectionKey?: boolean | string;
5
- contextKey?: boolean | string;
6
- searchKey?: boolean | string;
7
- visibleOnLayersKey?: boolean | string;
8
- visibleOffLayersKey?: boolean | string;
9
- directionsCoordKey?: boolean | string;
10
- directionsOptionsKey?: boolean | string;
11
- toolKey?: boolean | string;
12
- wmsUrlKey?: boolean | string;
13
- wmsLayersKey?: boolean | string;
14
- wmtsUrlKey?: boolean | string;
15
- wmtsLayersKey?: boolean | string;
16
- arcgisUrlKey?: boolean | string;
17
- arcgisLayersKey?: boolean | string;
18
- iarcgisUrlKey?: boolean | string;
19
- iarcgisLayersKey?: boolean | string;
20
- tarcgisUrlKey?: boolean | string;
21
- tarcgisLayersKey?: boolean | string;
22
- vectorKey?: boolean | string;
23
- }
1
+ export interface RouteServiceOptions {
2
+ centerKey?: boolean | string;
3
+ zoomKey?: boolean | string;
4
+ projectionKey?: boolean | string;
5
+ contextKey?: boolean | string;
6
+ searchKey?: boolean | string;
7
+ visibleOnLayersKey?: boolean | string;
8
+ visibleOffLayersKey?: boolean | string;
9
+ directionsCoordKey?: boolean | string;
10
+ directionsOptionsKey?: boolean | string;
11
+ toolKey?: boolean | string;
12
+ wmsUrlKey?: boolean | string;
13
+ wmsLayersKey?: boolean | string;
14
+ wmtsUrlKey?: boolean | string;
15
+ wmtsLayersKey?: boolean | string;
16
+ arcgisUrlKey?: boolean | string;
17
+ arcgisLayersKey?: boolean | string;
18
+ iarcgisUrlKey?: boolean | string;
19
+ iarcgisLayersKey?: boolean | string;
20
+ tarcgisUrlKey?: boolean | string;
21
+ tarcgisLayersKey?: boolean | string;
22
+ vectorKey?: boolean | string;
23
+ }
@@ -1,19 +1,19 @@
1
- import { InjectionToken } from '@angular/core';
2
- import { ActivatedRoute, Params, Router } from '@angular/router';
3
- import { Observable } from 'rxjs';
4
- import { RouteServiceOptions } from './route.interface';
5
- import * as i0 from "@angular/core";
6
- export declare let ROUTE_SERVICE_OPTIONS: InjectionToken<RouteServiceOptions>;
7
- export declare function provideRouteServiceOptions(options: RouteServiceOptions): {
8
- provide: InjectionToken<RouteServiceOptions>;
9
- useValue: RouteServiceOptions;
10
- };
11
- export declare class RouteService {
12
- private router;
13
- route: ActivatedRoute;
14
- options: RouteServiceOptions;
15
- constructor(router: Router, route: ActivatedRoute, options: RouteServiceOptions);
16
- get queryParams(): Observable<Params>;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<RouteService, [null, null, { optional: true; }]>;
18
- static ɵprov: i0.ɵɵInjectableDeclaration<RouteService>;
19
- }
1
+ import { InjectionToken } from '@angular/core';
2
+ import { ActivatedRoute, Params, Router } from '@angular/router';
3
+ import { Observable } from 'rxjs';
4
+ import { RouteServiceOptions } from './route.interface';
5
+ import * as i0 from "@angular/core";
6
+ export declare let ROUTE_SERVICE_OPTIONS: InjectionToken<RouteServiceOptions>;
7
+ export declare function provideRouteServiceOptions(options: RouteServiceOptions): {
8
+ provide: InjectionToken<RouteServiceOptions>;
9
+ useValue: RouteServiceOptions;
10
+ };
11
+ export declare class RouteService {
12
+ private router;
13
+ route: ActivatedRoute;
14
+ options: RouteServiceOptions;
15
+ constructor(router: Router, route: ActivatedRoute, options: RouteServiceOptions);
16
+ get queryParams(): Observable<Params>;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<RouteService, [null, null, { optional: true; }]>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<RouteService>;
19
+ }
@@ -1,2 +1,2 @@
1
- export * from './storage.service';
2
- export * from './storage.interface';
1
+ export * from './storage.service';
2
+ export * from './storage.interface';
@@ -1,20 +1,20 @@
1
- export declare enum StorageScope {
2
- SESSION = "Session",
3
- LOCAL = "Local"
4
- }
5
- export interface StorageOptions {
6
- key: string;
7
- }
8
- export interface StorageServiceEvent {
9
- key?: string;
10
- scope: StorageScope;
11
- event: StorageServiceEventEnum;
12
- previousValue?: any;
13
- currentValue?: any;
14
- }
15
- export declare enum StorageServiceEventEnum {
16
- ADDED = "Added",
17
- MODIFIED = "Modified",
18
- REMOVED = "Removed",
19
- CLEARED = "Cleared"
20
- }
1
+ export declare enum StorageScope {
2
+ SESSION = "Session",
3
+ LOCAL = "Local"
4
+ }
5
+ export interface StorageOptions {
6
+ key: string;
7
+ }
8
+ export interface StorageServiceEvent {
9
+ key?: string;
10
+ scope: StorageScope;
11
+ event: StorageServiceEventEnum;
12
+ previousValue?: any;
13
+ currentValue?: any;
14
+ }
15
+ export declare enum StorageServiceEventEnum {
16
+ ADDED = "Added",
17
+ MODIFIED = "Modified",
18
+ REMOVED = "Removed",
19
+ CLEARED = "Cleared"
20
+ }
@@ -1,19 +1,19 @@
1
- import { ConfigService } from '../config/config.service';
2
- import { StorageScope, StorageOptions, StorageServiceEvent } from './storage.interface';
3
- import { BehaviorSubject } from 'rxjs';
4
- import * as i0 from "@angular/core";
5
- export declare class StorageService {
6
- private config;
7
- protected options: StorageOptions;
8
- storageChange$: BehaviorSubject<StorageServiceEvent>;
9
- constructor(config: ConfigService);
10
- /**
11
- * Use to get the data found in storage file
12
- */
13
- get(key: string, scope?: StorageScope): string | object | boolean | number;
14
- set(key: string, value: string | object | boolean | number, scope?: StorageScope): void;
15
- remove(key: string, scope?: StorageScope): void;
16
- clear(scope?: StorageScope): void;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
18
- static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
19
- }
1
+ import { ConfigService } from '../config/config.service';
2
+ import { StorageScope, StorageOptions, StorageServiceEvent } from './storage.interface';
3
+ import { BehaviorSubject } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class StorageService {
6
+ private config;
7
+ protected options: StorageOptions;
8
+ storageChange$: BehaviorSubject<StorageServiceEvent>;
9
+ constructor(config: ConfigService);
10
+ /**
11
+ * Use to get the data found in storage file
12
+ */
13
+ get(key: string, scope?: StorageScope): string | object | boolean | number;
14
+ set(key: string, value: string | object | boolean | number, scope?: StorageScope): void;
15
+ remove(key: string, scope?: StorageScope): void;
16
+ clear(scope?: StorageScope): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
19
+ }
@@ -6,6 +6,7 @@
6
6
  "layer.addToMapOutRange": "Add to map. The layer is not visible at the current scale. Please zoom in/out",
7
7
  "layer.removeFromMap": "Remove from map",
8
8
  "layer.removeFromMapOutRange": "Remove from map. The layer is not visible at the current scale. Please zoom in/out",
9
+ "layer.removeFromMapNotVisible": "Remove from map. The layer is visible at the current scale but is not active. Toggle the map tool to adjust layer visibility.",
9
10
  "group.addToMap": "Add all layers from this group to map",
10
11
  "group.removeFromMap": "Remove all layers from this group to map",
11
12
  "baseLayers": "Baselayers",
@@ -262,7 +263,11 @@
262
263
  "style": {
263
264
  "styleModal": "Edit style",
264
265
  "styleModalTooltip": "Edit the style of the selected entities "
265
- }
266
+ },
267
+ "saveBtn": "Save",
268
+ "cancelBtn": "Cancel",
269
+ "saveFeatureInLayer": "Save selection in layer",
270
+ "chooseOrSet": "Choose a layer or set a new layer name"
266
271
  },
267
272
  "download": {
268
273
  "action": "Download data",
@@ -323,7 +328,8 @@
323
328
  "topright": "Top right corner of the map",
324
329
  "bottomleft": "Bottom left corner of the map",
325
330
  "bottomright": "Bottom right corner of the map",
326
- "newpage": "On a new page"
331
+ "newpage": "On a new page",
332
+ "newimage": "On a new image"
327
333
  }
328
334
  },
329
335
  "directionsForm": {
@@ -424,6 +430,7 @@
424
430
  "layer.placeholder": "Search for a layer",
425
431
  "ichercheReverse.name": "Search by coordinates",
426
432
  "clearSearch": "Clear search",
433
+ "addToLayer": "Add to layer",
427
434
  "ilayer": {
428
435
  "name": "Layers",
429
436
  "properties": {
@@ -487,7 +494,9 @@
487
494
  "coordinates": {
488
495
  "name": "Coordinates",
489
496
  "coord": "Geographic (longitude, latitude)",
497
+ "reversedCoord": "Geographic (latitude, longitude)",
490
498
  "coordDMS": "Geographic (longitude, latitude) (DMS)",
499
+ "reversedCoordDMS": "Geographic (latitude, longitude) (DMS)",
491
500
  "radius": "Radius",
492
501
  "conf": "Confidence"
493
502
  },
@@ -503,6 +512,11 @@
503
512
  "title": "Show results geometries",
504
513
  "tooltip": "Hide/ show the results geometries "
505
514
  },
515
+ "reverseCoordFormat": {
516
+ "title": "Display data in latitude/longitude",
517
+ "tooltipLonLat": "Display data in latitude/longitude",
518
+ "tooltipLatLon": "Display data in longitude/latitude"
519
+ },
506
520
  "searchSources": {
507
521
  "selectAll": "Select All",
508
522
  "unselectAll": "Unselect All",
@@ -607,7 +621,7 @@
607
621
  "secteur": "Sector",
608
622
  "immeubles": "Tenement",
609
623
  "sites": "Cultural sites",
610
- "cpe": "Children's education center",
624
+ "service-garde": "Child care",
611
625
  "public": "Public schools",
612
626
  "prive": "Private school",
613
627
  "gouvernemental": "Government schools",
@@ -685,14 +699,14 @@
685
699
  "abort": "Abort current drawing",
686
700
  "cancel": "Cancel",
687
701
  "Circle": "Circle",
688
- "colorPicker": "Click to open the color picker",
702
+ "colorPicker": "Click to open the color selector",
689
703
  "dialogInstruction": "Enter your drawing's label",
690
704
  "dialogTitle": "Label",
691
705
  "delete": "Remove Drawings from map",
692
- "drawing": "Draws",
706
+ "drawing": "Drawings",
693
707
  "fill": "Fill",
694
708
  "finish": "Finish current drawing",
695
- "freehandMode": "Freehand draw",
709
+ "freehandMode": "Freehand drawing",
696
710
  "icon": "Icons",
697
711
  "InsertvalueRadius": "Use a predefined radius",
698
712
  "labels": "Labels",
@@ -723,10 +737,10 @@
723
737
  "Length": "Length",
724
738
  "Area": "Area",
725
739
  "predefined": "Predefined",
726
- "custom": "Custom",
740
+ "custom": "Customized",
727
741
  "A": "A: "
728
742
  },
729
- "popupTitle": "Drawing's label"
743
+ "popupTitle": "Drawing label"
730
744
  },
731
745
  "network": {
732
746
  "online": {
package/locale/en.json CHANGED
@@ -288,6 +288,7 @@
288
288
  "layer.addToMapOutRange": "Add to map. The layer is not visible at the current scale. Please zoom in/out",
289
289
  "layer.removeFromMap": "Remove from map",
290
290
  "layer.removeFromMapOutRange": "Remove from map. The layer is not visible at the current scale. Please zoom in/out",
291
+ "layer.removeFromMapNotVisible": "Remove from map. The layer is visible at the current scale but is not active. Toggle the map tool to adjust layer visibility.",
291
292
  "group.addToMap": "Add all layers from this group to map",
292
293
  "group.removeFromMap": "Remove all layers from this group to map",
293
294
  "baseLayers": "Baselayers",
@@ -543,7 +544,11 @@
543
544
  "style": {
544
545
  "styleModal": "Edit style",
545
546
  "styleModalTooltip": "Edit the style of the selected entities "
546
- }
547
+ },
548
+ "saveBtn": "Save",
549
+ "cancelBtn": "Cancel",
550
+ "saveFeatureInLayer": "Save selection in layer",
551
+ "chooseOrSet": "Choose a layer or set a new layer name"
547
552
  },
548
553
  "download": {
549
554
  "action": "Download data",
@@ -604,7 +609,8 @@
604
609
  "topright": "Top right corner of the map",
605
610
  "bottomleft": "Bottom left corner of the map",
606
611
  "bottomright": "Bottom right corner of the map",
607
- "newpage": "On a new page"
612
+ "newpage": "On a new page",
613
+ "newimage": "On a new image"
608
614
  }
609
615
  },
610
616
  "directionsForm": {
@@ -704,6 +710,7 @@
704
710
  "layer.placeholder": "Search for a layer",
705
711
  "ichercheReverse.name": "Search by coordinates",
706
712
  "clearSearch": "Clear search",
713
+ "addToLayer": "Add to layer",
707
714
  "ilayer": {
708
715
  "name": "Layers",
709
716
  "properties": {
@@ -767,7 +774,9 @@
767
774
  "coordinates": {
768
775
  "name": "Coordinates",
769
776
  "coord": "Geographic (longitude, latitude)",
777
+ "reversedCoord": "Geographic (latitude, longitude)",
770
778
  "coordDMS": "Geographic (longitude, latitude) (DMS)",
779
+ "reversedCoordDMS": "Geographic (latitude, longitude) (DMS)",
771
780
  "radius": "Radius",
772
781
  "conf": "Confidence"
773
782
  },
@@ -783,6 +792,11 @@
783
792
  "title": "Show results geometries",
784
793
  "tooltip": "Hide/ show the results geometries "
785
794
  },
795
+ "reverseCoordFormat": {
796
+ "title": "Display data in latitude/longitude",
797
+ "tooltipLonLat": "Display data in latitude/longitude",
798
+ "tooltipLatLon": "Display data in longitude/latitude"
799
+ },
786
800
  "searchSources": {
787
801
  "selectAll": "Select All",
788
802
  "unselectAll": "Unselect All",
@@ -887,7 +901,7 @@
887
901
  "secteur": "Sector",
888
902
  "immeubles": "Tenement",
889
903
  "sites": "Cultural sites",
890
- "cpe": "Children's education center",
904
+ "service-garde": "Child care",
891
905
  "public": "Public schools",
892
906
  "prive": "Private school",
893
907
  "gouvernemental": "Government schools",
@@ -965,14 +979,14 @@
965
979
  "abort": "Abort current drawing",
966
980
  "cancel": "Cancel",
967
981
  "Circle": "Circle",
968
- "colorPicker": "Click to open the color picker",
982
+ "colorPicker": "Click to open the color selector",
969
983
  "dialogInstruction": "Enter your drawing's label",
970
984
  "dialogTitle": "Label",
971
985
  "delete": "Remove Drawings from map",
972
- "drawing": "Draws",
986
+ "drawing": "Drawings",
973
987
  "fill": "Fill",
974
988
  "finish": "Finish current drawing",
975
- "freehandMode": "Freehand draw",
989
+ "freehandMode": "Freehand drawing",
976
990
  "icon": "Icons",
977
991
  "InsertvalueRadius": "Use a predefined radius",
978
992
  "labels": "Labels",
@@ -1003,10 +1017,10 @@
1003
1017
  "Length": "Length",
1004
1018
  "Area": "Area",
1005
1019
  "predefined": "Predefined",
1006
- "custom": "Custom",
1020
+ "custom": "Customized",
1007
1021
  "A": "A: "
1008
1022
  },
1009
- "popupTitle": "Drawing's label"
1023
+ "popupTitle": "Drawing label"
1010
1024
  },
1011
1025
  "network": {
1012
1026
  "online": {