@igo2/integration 1.13.0-alpha.0 → 1.13.0-alpha.1
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.
- package/esm2020/lib/map/advanced-map-tool/advanced-coordinates/advanced-coordinates.component.mjs +3 -3
- package/esm2020/lib/map/advanced-map-tool/advanced-swipe/advanced-swipe.component.mjs +3 -3
- package/fesm2015/igo2-integration.mjs +4 -4
- package/fesm2015/igo2-integration.mjs.map +1 -1
- package/fesm2020/igo2-integration.mjs +4 -4
- package/fesm2020/igo2-integration.mjs.map +1 -1
- package/lib/map/advanced-map-tool/advanced-coordinates/advanced-coordinates.component.d.ts +3 -3
- package/lib/map/advanced-map-tool/advanced-swipe/advanced-swipe.component.d.ts +3 -3
- package/package.json +5 -5
|
@@ -3,7 +3,7 @@ import { IgoMap, InputProjections, ProjectionsLimitationsOptions } from '@igo2/g
|
|
|
3
3
|
import { MapState } from '../../map.state';
|
|
4
4
|
import { MessageService, LanguageService, StorageService, ConfigService } from '@igo2/core';
|
|
5
5
|
import { BehaviorSubject } from 'rxjs';
|
|
6
|
-
import {
|
|
6
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Tool to display the coordinates and a cursor of the center of the map
|
|
@@ -18,7 +18,7 @@ export declare class AdvancedCoordinatesComponent implements OnInit, OnDestroy {
|
|
|
18
18
|
private formBuilder;
|
|
19
19
|
formattedScale$: BehaviorSubject<string>;
|
|
20
20
|
projections$: BehaviorSubject<InputProjections[]>;
|
|
21
|
-
form:
|
|
21
|
+
form: FormGroup;
|
|
22
22
|
coordinates: string[];
|
|
23
23
|
private currentCenterDefaultProj;
|
|
24
24
|
center: boolean;
|
|
@@ -35,7 +35,7 @@ export declare class AdvancedCoordinatesComponent implements OnInit, OnDestroy {
|
|
|
35
35
|
set inputProj(value: InputProjections);
|
|
36
36
|
get projectionsLimitations(): ProjectionsLimitationsOptions;
|
|
37
37
|
set projectionsLimitations(value: ProjectionsLimitationsOptions);
|
|
38
|
-
constructor(mapState: MapState, languageService: LanguageService, messageService: MessageService, cdRef: ChangeDetectorRef, storageService: StorageService, config: ConfigService, formBuilder:
|
|
38
|
+
constructor(mapState: MapState, languageService: LanguageService, messageService: MessageService, cdRef: ChangeDetectorRef, storageService: StorageService, config: ConfigService, formBuilder: FormBuilder);
|
|
39
39
|
/**
|
|
40
40
|
* Listen a state of the map, a state of a form, update the coordinates
|
|
41
41
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
3
3
|
import { ContextService, DetailedContext } from '@igo2/context';
|
|
4
4
|
import { IgoMap, Layer, VectorLayer } from '@igo2/geo';
|
|
5
5
|
import { MapState } from '../../map.state';
|
|
@@ -13,7 +13,7 @@ export declare class AdvancedSwipeComponent implements OnInit, OnDestroy {
|
|
|
13
13
|
swipe: boolean;
|
|
14
14
|
layerList: Layer[];
|
|
15
15
|
userControlledLayerList: Layer[];
|
|
16
|
-
form:
|
|
16
|
+
form: FormGroup;
|
|
17
17
|
layers: VectorLayer[];
|
|
18
18
|
res: DetailedContext;
|
|
19
19
|
listForSwipe: Layer[];
|
|
@@ -21,7 +21,7 @@ export declare class AdvancedSwipeComponent implements OnInit, OnDestroy {
|
|
|
21
21
|
* Get an active map state
|
|
22
22
|
*/
|
|
23
23
|
get map(): IgoMap;
|
|
24
|
-
constructor(mapState: MapState, contextService: ContextService, formBuilder:
|
|
24
|
+
constructor(mapState: MapState, contextService: ContextService, formBuilder: FormBuilder, toolState: ToolState);
|
|
25
25
|
/**
|
|
26
26
|
* Get the list of layers for swipe
|
|
27
27
|
* @internal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/integration",
|
|
3
|
-
"version": "1.13.0-alpha.
|
|
3
|
+
"version": "1.13.0-alpha.1",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "MSP",
|
|
6
6
|
"keywords": [
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"url": "https://github.com/infra-geo-ouverte/igo2-lib/issues"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@angular/common": "^
|
|
20
|
-
"@angular/core": "^
|
|
21
|
-
"@igo2/geo": "1.13.0-alpha.
|
|
22
|
-
"@igo2/context": "1.13.0-alpha.
|
|
19
|
+
"@angular/common": "^13.3.11",
|
|
20
|
+
"@angular/core": "^13.3.11",
|
|
21
|
+
"@igo2/geo": "1.13.0-alpha.1",
|
|
22
|
+
"@igo2/context": "1.13.0-alpha.1",
|
|
23
23
|
"rxjs": "^6.6.7"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|