@artstesh/maps 9.0.5 → 9.1.0-alpha.0
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/dist/fesm2022/maps-components-src-map.mjs +25 -21
- package/dist/fesm2022/maps-components-src-map.mjs.map +1 -1
- package/dist/fesm2022/maps-components.mjs +25 -21
- package/dist/fesm2022/maps-components.mjs.map +1 -1
- package/dist/index.d.ts +5 -4
- package/dist/src/map/index.d.ts +5 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export { Geometry, LineString, Point } from 'ol/geom';
|
|
|
6
6
|
import { Control } from 'ol/control';
|
|
7
7
|
import { Options } from 'ol/control/Control';
|
|
8
8
|
import * as i0 from '@angular/core';
|
|
9
|
-
import { OnDestroy, OnInit, AfterViewInit, TemplateRef, ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
9
|
+
import { OnDestroy, OnInit, AfterViewInit, TemplateRef, ElementRef, ChangeDetectorRef, NgZone } from '@angular/core';
|
|
10
10
|
import Map from 'ol/Map';
|
|
11
11
|
import { Subscription } from 'rxjs';
|
|
12
12
|
import { PostboyService, IPostboyDependingService, PostboyGenericMessage, PostboyAbstractRegistrator, PostboyCallbackMessage, PostboyExecutor } from '@artstesh/postboy';
|
|
@@ -1193,12 +1193,13 @@ declare class MapPlateComponent extends DestructibleComponent implements AfterVi
|
|
|
1193
1193
|
private mapFactory;
|
|
1194
1194
|
private registrator;
|
|
1195
1195
|
private detector;
|
|
1196
|
+
private ngZone;
|
|
1196
1197
|
contentRef: i0.InputSignal<TemplateRef<any>>;
|
|
1197
1198
|
private renderTryCount;
|
|
1198
|
-
map: Map
|
|
1199
|
-
osmUrl: string
|
|
1199
|
+
map: i0.WritableSignal<Map | null>;
|
|
1200
|
+
osmUrl: i0.WritableSignal<string>;
|
|
1200
1201
|
drawingLayerSettings: FeatureLayerSettings;
|
|
1201
|
-
constructor(elementRef: ElementRef, postboy: MapPostboyService, mapFactory: MapPlateFactory, registrator: MessageRegistratorService, detector: ChangeDetectorRef);
|
|
1202
|
+
constructor(elementRef: ElementRef, postboy: MapPostboyService, mapFactory: MapPlateFactory, registrator: MessageRegistratorService, detector: ChangeDetectorRef, ngZone: NgZone);
|
|
1202
1203
|
_settings: MapSettings;
|
|
1203
1204
|
set settings(value: MapSettings | undefined);
|
|
1204
1205
|
private initializeMap;
|
package/dist/src/map/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export { Geometry, LineString, Point } from 'ol/geom';
|
|
|
6
6
|
import { Control } from 'ol/control';
|
|
7
7
|
import { Options } from 'ol/control/Control';
|
|
8
8
|
import * as i0 from '@angular/core';
|
|
9
|
-
import { OnDestroy, OnInit, AfterViewInit, TemplateRef, ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
9
|
+
import { OnDestroy, OnInit, AfterViewInit, TemplateRef, ElementRef, ChangeDetectorRef, NgZone } from '@angular/core';
|
|
10
10
|
import Map from 'ol/Map';
|
|
11
11
|
import { Subscription } from 'rxjs';
|
|
12
12
|
import { PostboyService, IPostboyDependingService, PostboyGenericMessage, PostboyAbstractRegistrator, PostboyCallbackMessage, PostboyExecutor } from '@artstesh/postboy';
|
|
@@ -1193,12 +1193,13 @@ declare class MapPlateComponent extends DestructibleComponent implements AfterVi
|
|
|
1193
1193
|
private mapFactory;
|
|
1194
1194
|
private registrator;
|
|
1195
1195
|
private detector;
|
|
1196
|
+
private ngZone;
|
|
1196
1197
|
contentRef: i0.InputSignal<TemplateRef<any>>;
|
|
1197
1198
|
private renderTryCount;
|
|
1198
|
-
map: Map
|
|
1199
|
-
osmUrl: string
|
|
1199
|
+
map: i0.WritableSignal<Map | null>;
|
|
1200
|
+
osmUrl: i0.WritableSignal<string>;
|
|
1200
1201
|
drawingLayerSettings: FeatureLayerSettings;
|
|
1201
|
-
constructor(elementRef: ElementRef, postboy: MapPostboyService, mapFactory: MapPlateFactory, registrator: MessageRegistratorService, detector: ChangeDetectorRef);
|
|
1202
|
+
constructor(elementRef: ElementRef, postboy: MapPostboyService, mapFactory: MapPlateFactory, registrator: MessageRegistratorService, detector: ChangeDetectorRef, ngZone: NgZone);
|
|
1202
1203
|
_settings: MapSettings;
|
|
1203
1204
|
set settings(value: MapSettings | undefined);
|
|
1204
1205
|
private initializeMap;
|