@angular-helpers/openlayers 21.14.1 → 22.0.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/fesm2022/angular-helpers-openlayers-controls.mjs +114 -86
- package/fesm2022/angular-helpers-openlayers-core.mjs +42 -30
- package/fesm2022/angular-helpers-openlayers-interactions.mjs +76 -55
- package/fesm2022/angular-helpers-openlayers-layers.mjs +155 -97
- package/fesm2022/angular-helpers-openlayers-military.mjs +6 -6
- package/fesm2022/angular-helpers-openlayers-overlays.mjs +26 -19
- package/package.json +4 -4
- package/types/angular-helpers-openlayers-controls.d.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { inject, signal, computed, Injectable, input, output,
|
|
2
|
+
import { inject, signal, computed, Injectable, input, output, Component, DestroyRef, contentChild, afterNextRender, effect } from '@angular/core';
|
|
3
3
|
import VectorLayer from 'ol/layer/Vector';
|
|
4
4
|
import HeatmapLayer from 'ol/layer/Heatmap';
|
|
5
5
|
import TileLayer from 'ol/layer/Tile';
|
|
@@ -351,12 +351,17 @@ class OlLayerService {
|
|
|
351
351
|
mapService = inject(OlMapService);
|
|
352
352
|
layerCache = new Map();
|
|
353
353
|
pendingConfigs = [];
|
|
354
|
-
layerState = signal([],
|
|
354
|
+
layerState = signal([], /* @ts-ignore */
|
|
355
|
+
...(ngDevMode ? [{ debugName: "layerState" }] : /* istanbul ignore next */ []));
|
|
355
356
|
spiderManager = new SpiderficationManager(this.layerCache);
|
|
356
|
-
layers = computed(() => this.layerState(),
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
357
|
+
layers = computed(() => this.layerState(), /* @ts-ignore */
|
|
358
|
+
...(ngDevMode ? [{ debugName: "layers" }] : /* istanbul ignore next */ []));
|
|
359
|
+
visibleLayers = computed(() => this.layerState().filter((l) => l.visible), /* @ts-ignore */
|
|
360
|
+
...(ngDevMode ? [{ debugName: "visibleLayers" }] : /* istanbul ignore next */ []));
|
|
361
|
+
tileLayers = computed(() => this.layerState().filter((l) => l.type === 'tile'), /* @ts-ignore */
|
|
362
|
+
...(ngDevMode ? [{ debugName: "tileLayers" }] : /* istanbul ignore next */ []));
|
|
363
|
+
vectorLayers = computed(() => this.layerState().filter((l) => l.type === 'vector'), /* @ts-ignore */
|
|
364
|
+
...(ngDevMode ? [{ debugName: "vectorLayers" }] : /* istanbul ignore next */ []));
|
|
360
365
|
addLayer(config) {
|
|
361
366
|
if (this.layerCache.has(config.id)) {
|
|
362
367
|
return { id: config.id };
|
|
@@ -710,29 +715,33 @@ class OlLayerService {
|
|
|
710
715
|
});
|
|
711
716
|
this.layerState.set(layers.sort((a, b) => a.zIndex - b.zIndex));
|
|
712
717
|
}
|
|
713
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
714
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
718
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlLayerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
719
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlLayerService });
|
|
715
720
|
}
|
|
716
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
721
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlLayerService, decorators: [{
|
|
717
722
|
type: Injectable
|
|
718
723
|
}] });
|
|
719
724
|
|
|
720
725
|
class OlClusterComponent {
|
|
721
|
-
distance = input(40,
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
+
distance = input(40, /* @ts-ignore */
|
|
727
|
+
...(ngDevMode ? [{ debugName: "distance" }] : /* istanbul ignore next */ []));
|
|
728
|
+
minDistance = input(20, /* @ts-ignore */
|
|
729
|
+
...(ngDevMode ? [{ debugName: "minDistance" }] : /* istanbul ignore next */ []));
|
|
730
|
+
showCount = input(true, /* @ts-ignore */
|
|
731
|
+
...(ngDevMode ? [{ debugName: "showCount" }] : /* istanbul ignore next */ []));
|
|
732
|
+
featureStyle = input(/* @ts-ignore */
|
|
733
|
+
...(ngDevMode ? [undefined, { debugName: "featureStyle" }] : /* istanbul ignore next */ []));
|
|
734
|
+
spiderfyOnSelect = input(false, /* @ts-ignore */
|
|
735
|
+
...(ngDevMode ? [{ debugName: "spiderfyOnSelect" }] : /* istanbul ignore next */ []));
|
|
726
736
|
spiderfyClick = output();
|
|
727
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
728
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
737
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlClusterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
738
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.0", type: OlClusterComponent, isStandalone: true, selector: "ol-cluster", inputs: { distance: { classPropertyName: "distance", publicName: "distance", isSignal: true, isRequired: false, transformFunction: null }, minDistance: { classPropertyName: "minDistance", publicName: "minDistance", isSignal: true, isRequired: false, transformFunction: null }, showCount: { classPropertyName: "showCount", publicName: "showCount", isSignal: true, isRequired: false, transformFunction: null }, featureStyle: { classPropertyName: "featureStyle", publicName: "featureStyle", isSignal: true, isRequired: false, transformFunction: null }, spiderfyOnSelect: { classPropertyName: "spiderfyOnSelect", publicName: "spiderfyOnSelect", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { spiderfyClick: "spiderfyClick" }, ngImport: i0, template: '', isInline: true });
|
|
729
739
|
}
|
|
730
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlClusterComponent, decorators: [{
|
|
731
741
|
type: Component,
|
|
732
742
|
args: [{
|
|
733
743
|
selector: 'ol-cluster',
|
|
734
744
|
template: '',
|
|
735
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
736
745
|
}]
|
|
737
746
|
}], propDecorators: { distance: [{ type: i0.Input, args: [{ isSignal: true, alias: "distance", required: false }] }], minDistance: [{ type: i0.Input, args: [{ isSignal: true, alias: "minDistance", required: false }] }], showCount: [{ type: i0.Input, args: [{ isSignal: true, alias: "showCount", required: false }] }], featureStyle: [{ type: i0.Input, args: [{ isSignal: true, alias: "featureStyle", required: false }] }], spiderfyOnSelect: [{ type: i0.Input, args: [{ isSignal: true, alias: "spiderfyOnSelect", required: false }] }], spiderfyClick: [{ type: i0.Output, args: ["spiderfyClick"] }] } });
|
|
738
747
|
|
|
@@ -740,17 +749,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.13", ngImpo
|
|
|
740
749
|
class OlVectorLayerComponent {
|
|
741
750
|
layerService = inject(OlLayerService);
|
|
742
751
|
destroyRef = inject(DestroyRef);
|
|
743
|
-
id = input.required(
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
752
|
+
id = input.required(/* @ts-ignore */
|
|
753
|
+
...(ngDevMode ? [{ debugName: "id" }] : /* istanbul ignore next */ []));
|
|
754
|
+
features = input([], /* @ts-ignore */
|
|
755
|
+
...(ngDevMode ? [{ debugName: "features" }] : /* istanbul ignore next */ []));
|
|
756
|
+
url = input(/* @ts-ignore */
|
|
757
|
+
...(ngDevMode ? [undefined, { debugName: "url" }] : /* istanbul ignore next */ []));
|
|
758
|
+
format = input(/* @ts-ignore */
|
|
759
|
+
...(ngDevMode ? [undefined, { debugName: "format" }] : /* istanbul ignore next */ []));
|
|
760
|
+
zIndex = input(0, /* @ts-ignore */
|
|
761
|
+
...(ngDevMode ? [{ debugName: "zIndex" }] : /* istanbul ignore next */ []));
|
|
762
|
+
opacity = input(1, /* @ts-ignore */
|
|
763
|
+
...(ngDevMode ? [{ debugName: "opacity" }] : /* istanbul ignore next */ []));
|
|
764
|
+
visible = input(true, /* @ts-ignore */
|
|
765
|
+
...(ngDevMode ? [{ debugName: "visible" }] : /* istanbul ignore next */ []));
|
|
766
|
+
style = input(/* @ts-ignore */
|
|
767
|
+
...(ngDevMode ? [undefined, { debugName: "style" }] : /* istanbul ignore next */ []));
|
|
768
|
+
cluster = input(/* @ts-ignore */
|
|
769
|
+
...(ngDevMode ? [undefined, { debugName: "cluster" }] : /* istanbul ignore next */ []));
|
|
770
|
+
clusterComponent = contentChild(OlClusterComponent, /* @ts-ignore */
|
|
771
|
+
...(ngDevMode ? [{ debugName: "clusterComponent" }] : /* istanbul ignore next */ []));
|
|
772
|
+
coordinateProjection = input('EPSG:4326', /* @ts-ignore */
|
|
773
|
+
...(ngDevMode ? [{ debugName: "coordinateProjection" }] : /* istanbul ignore next */ []));
|
|
754
774
|
constructor() {
|
|
755
775
|
// Initialize layer after DOM is ready
|
|
756
776
|
afterNextRender(() => {
|
|
@@ -822,15 +842,14 @@ class OlVectorLayerComponent {
|
|
|
822
842
|
this.layerService.removeLayer(this.id());
|
|
823
843
|
});
|
|
824
844
|
}
|
|
825
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
826
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "
|
|
845
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlVectorLayerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
846
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "22.0.0", type: OlVectorLayerComponent, isStandalone: true, selector: "ol-vector-layer", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: true, transformFunction: null }, features: { classPropertyName: "features", publicName: "features", isSignal: true, isRequired: false, transformFunction: null }, url: { classPropertyName: "url", publicName: "url", isSignal: true, isRequired: false, transformFunction: null }, format: { classPropertyName: "format", publicName: "format", isSignal: true, isRequired: false, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, opacity: { classPropertyName: "opacity", publicName: "opacity", isSignal: true, isRequired: false, transformFunction: null }, visible: { classPropertyName: "visible", publicName: "visible", isSignal: true, isRequired: false, transformFunction: null }, style: { classPropertyName: "style", publicName: "style", isSignal: true, isRequired: false, transformFunction: null }, cluster: { classPropertyName: "cluster", publicName: "cluster", isSignal: true, isRequired: false, transformFunction: null }, coordinateProjection: { classPropertyName: "coordinateProjection", publicName: "coordinateProjection", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "clusterComponent", first: true, predicate: OlClusterComponent, descendants: true, isSignal: true }], ngImport: i0, template: '', isInline: true });
|
|
827
847
|
}
|
|
828
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
848
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlVectorLayerComponent, decorators: [{
|
|
829
849
|
type: Component,
|
|
830
850
|
args: [{
|
|
831
851
|
selector: 'ol-vector-layer',
|
|
832
852
|
template: '',
|
|
833
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
834
853
|
}]
|
|
835
854
|
}], ctorParameters: () => [], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: true }] }], features: [{ type: i0.Input, args: [{ isSignal: true, alias: "features", required: false }] }], url: [{ type: i0.Input, args: [{ isSignal: true, alias: "url", required: false }] }], format: [{ type: i0.Input, args: [{ isSignal: true, alias: "format", required: false }] }], zIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "zIndex", required: false }] }], opacity: [{ type: i0.Input, args: [{ isSignal: true, alias: "opacity", required: false }] }], visible: [{ type: i0.Input, args: [{ isSignal: true, alias: "visible", required: false }] }], style: [{ type: i0.Input, args: [{ isSignal: true, alias: "style", required: false }] }], cluster: [{ type: i0.Input, args: [{ isSignal: true, alias: "cluster", required: false }] }], clusterComponent: [{ type: i0.ContentChild, args: [i0.forwardRef(() => OlClusterComponent), { isSignal: true }] }], coordinateProjection: [{ type: i0.Input, args: [{ isSignal: true, alias: "coordinateProjection", required: false }] }] } });
|
|
836
855
|
|
|
@@ -838,14 +857,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.13", ngImpo
|
|
|
838
857
|
class OlTileLayerComponent {
|
|
839
858
|
layerService = inject(OlLayerService);
|
|
840
859
|
destroyRef = inject(DestroyRef);
|
|
841
|
-
id = input.required(
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
860
|
+
id = input.required(/* @ts-ignore */
|
|
861
|
+
...(ngDevMode ? [{ debugName: "id" }] : /* istanbul ignore next */ []));
|
|
862
|
+
source = input.required(/* @ts-ignore */
|
|
863
|
+
...(ngDevMode ? [{ debugName: "source" }] : /* istanbul ignore next */ []));
|
|
864
|
+
url = input(/* @ts-ignore */
|
|
865
|
+
...(ngDevMode ? [undefined, { debugName: "url" }] : /* istanbul ignore next */ []));
|
|
866
|
+
attributions = input(/* @ts-ignore */
|
|
867
|
+
...(ngDevMode ? [undefined, { debugName: "attributions" }] : /* istanbul ignore next */ []));
|
|
868
|
+
params = input(/* @ts-ignore */
|
|
869
|
+
...(ngDevMode ? [undefined, { debugName: "params" }] : /* istanbul ignore next */ []));
|
|
870
|
+
zIndex = input(0, /* @ts-ignore */
|
|
871
|
+
...(ngDevMode ? [{ debugName: "zIndex" }] : /* istanbul ignore next */ []));
|
|
872
|
+
opacity = input(1, /* @ts-ignore */
|
|
873
|
+
...(ngDevMode ? [{ debugName: "opacity" }] : /* istanbul ignore next */ []));
|
|
874
|
+
visible = input(true, /* @ts-ignore */
|
|
875
|
+
...(ngDevMode ? [{ debugName: "visible" }] : /* istanbul ignore next */ []));
|
|
849
876
|
constructor() {
|
|
850
877
|
// Initialize layer after DOM is ready
|
|
851
878
|
afterNextRender(() => {
|
|
@@ -877,15 +904,14 @@ class OlTileLayerComponent {
|
|
|
877
904
|
this.layerService.removeLayer(this.id());
|
|
878
905
|
});
|
|
879
906
|
}
|
|
880
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
881
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
907
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlTileLayerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
908
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.0", type: OlTileLayerComponent, isStandalone: true, selector: "ol-tile-layer", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: true, transformFunction: null }, source: { classPropertyName: "source", publicName: "source", isSignal: true, isRequired: true, transformFunction: null }, url: { classPropertyName: "url", publicName: "url", isSignal: true, isRequired: false, transformFunction: null }, attributions: { classPropertyName: "attributions", publicName: "attributions", isSignal: true, isRequired: false, transformFunction: null }, params: { classPropertyName: "params", publicName: "params", isSignal: true, isRequired: false, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, opacity: { classPropertyName: "opacity", publicName: "opacity", isSignal: true, isRequired: false, transformFunction: null }, visible: { classPropertyName: "visible", publicName: "visible", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: '', isInline: true });
|
|
882
909
|
}
|
|
883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
910
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlTileLayerComponent, decorators: [{
|
|
884
911
|
type: Component,
|
|
885
912
|
args: [{
|
|
886
913
|
selector: 'ol-tile-layer',
|
|
887
914
|
template: '',
|
|
888
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
889
915
|
}]
|
|
890
916
|
}], ctorParameters: () => [], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: true }] }], source: [{ type: i0.Input, args: [{ isSignal: true, alias: "source", required: true }] }], url: [{ type: i0.Input, args: [{ isSignal: true, alias: "url", required: false }] }], attributions: [{ type: i0.Input, args: [{ isSignal: true, alias: "attributions", required: false }] }], params: [{ type: i0.Input, args: [{ isSignal: true, alias: "params", required: false }] }], zIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "zIndex", required: false }] }], opacity: [{ type: i0.Input, args: [{ isSignal: true, alias: "opacity", required: false }] }], visible: [{ type: i0.Input, args: [{ isSignal: true, alias: "visible", required: false }] }] } });
|
|
891
917
|
|
|
@@ -893,14 +919,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.13", ngImpo
|
|
|
893
919
|
class OlImageLayerComponent {
|
|
894
920
|
layerService = inject(OlLayerService);
|
|
895
921
|
destroyRef = inject(DestroyRef);
|
|
896
|
-
id = input.required(
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
922
|
+
id = input.required(/* @ts-ignore */
|
|
923
|
+
...(ngDevMode ? [{ debugName: "id" }] : /* istanbul ignore next */ []));
|
|
924
|
+
sourceType = input.required(/* @ts-ignore */
|
|
925
|
+
...(ngDevMode ? [{ debugName: "sourceType" }] : /* istanbul ignore next */ []));
|
|
926
|
+
url = input.required(/* @ts-ignore */
|
|
927
|
+
...(ngDevMode ? [{ debugName: "url" }] : /* istanbul ignore next */ []));
|
|
928
|
+
params = input(/* @ts-ignore */
|
|
929
|
+
...(ngDevMode ? [undefined, { debugName: "params" }] : /* istanbul ignore next */ []));
|
|
930
|
+
imageExtent = input(/* @ts-ignore */
|
|
931
|
+
...(ngDevMode ? [undefined, { debugName: "imageExtent" }] : /* istanbul ignore next */ []));
|
|
932
|
+
zIndex = input(0, /* @ts-ignore */
|
|
933
|
+
...(ngDevMode ? [{ debugName: "zIndex" }] : /* istanbul ignore next */ []));
|
|
934
|
+
opacity = input(1, /* @ts-ignore */
|
|
935
|
+
...(ngDevMode ? [{ debugName: "opacity" }] : /* istanbul ignore next */ []));
|
|
936
|
+
visible = input(true, /* @ts-ignore */
|
|
937
|
+
...(ngDevMode ? [{ debugName: "visible" }] : /* istanbul ignore next */ []));
|
|
904
938
|
constructor() {
|
|
905
939
|
// Initialize layer after DOM is ready
|
|
906
940
|
afterNextRender(() => {
|
|
@@ -923,15 +957,14 @@ class OlImageLayerComponent {
|
|
|
923
957
|
this.layerService.removeLayer(this.id());
|
|
924
958
|
});
|
|
925
959
|
}
|
|
926
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
927
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
960
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlImageLayerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
961
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.0", type: OlImageLayerComponent, isStandalone: true, selector: "ol-image-layer", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: true, transformFunction: null }, sourceType: { classPropertyName: "sourceType", publicName: "sourceType", isSignal: true, isRequired: true, transformFunction: null }, url: { classPropertyName: "url", publicName: "url", isSignal: true, isRequired: true, transformFunction: null }, params: { classPropertyName: "params", publicName: "params", isSignal: true, isRequired: false, transformFunction: null }, imageExtent: { classPropertyName: "imageExtent", publicName: "imageExtent", isSignal: true, isRequired: false, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, opacity: { classPropertyName: "opacity", publicName: "opacity", isSignal: true, isRequired: false, transformFunction: null }, visible: { classPropertyName: "visible", publicName: "visible", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: '', isInline: true });
|
|
928
962
|
}
|
|
929
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlImageLayerComponent, decorators: [{
|
|
930
964
|
type: Component,
|
|
931
965
|
args: [{
|
|
932
966
|
selector: 'ol-image-layer',
|
|
933
967
|
template: '',
|
|
934
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
935
968
|
}]
|
|
936
969
|
}], ctorParameters: () => [], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: true }] }], sourceType: [{ type: i0.Input, args: [{ isSignal: true, alias: "sourceType", required: true }] }], url: [{ type: i0.Input, args: [{ isSignal: true, alias: "url", required: true }] }], params: [{ type: i0.Input, args: [{ isSignal: true, alias: "params", required: false }] }], imageExtent: [{ type: i0.Input, args: [{ isSignal: true, alias: "imageExtent", required: false }] }], zIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "zIndex", required: false }] }], opacity: [{ type: i0.Input, args: [{ isSignal: true, alias: "opacity", required: false }] }], visible: [{ type: i0.Input, args: [{ isSignal: true, alias: "visible", required: false }] }] } });
|
|
937
970
|
|
|
@@ -939,30 +972,41 @@ class OlHeatmapLayerComponent {
|
|
|
939
972
|
layerService = inject(OlLayerService);
|
|
940
973
|
mapService = inject(OlMapService);
|
|
941
974
|
destroyRef = inject(DestroyRef);
|
|
942
|
-
id = input.required(
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
975
|
+
id = input.required(/* @ts-ignore */
|
|
976
|
+
...(ngDevMode ? [{ debugName: "id" }] : /* istanbul ignore next */ []));
|
|
977
|
+
features = input([], /* @ts-ignore */
|
|
978
|
+
...(ngDevMode ? [{ debugName: "features" }] : /* istanbul ignore next */ []));
|
|
979
|
+
zIndex = input(0, /* @ts-ignore */
|
|
980
|
+
...(ngDevMode ? [{ debugName: "zIndex" }] : /* istanbul ignore next */ []));
|
|
981
|
+
opacity = input(1, /* @ts-ignore */
|
|
982
|
+
...(ngDevMode ? [{ debugName: "opacity" }] : /* istanbul ignore next */ []));
|
|
983
|
+
visible = input(true, /* @ts-ignore */
|
|
984
|
+
...(ngDevMode ? [{ debugName: "visible" }] : /* istanbul ignore next */ []));
|
|
985
|
+
blur = input(15, /* @ts-ignore */
|
|
986
|
+
...(ngDevMode ? [{ debugName: "blur" }] : /* istanbul ignore next */ []));
|
|
987
|
+
radius = input(8, /* @ts-ignore */
|
|
988
|
+
...(ngDevMode ? [{ debugName: "radius" }] : /* istanbul ignore next */ []));
|
|
949
989
|
/** Unit for radius and blur: 'pixels' (default) or 'meters' */
|
|
950
|
-
radiusUnit = input('pixels',
|
|
951
|
-
|
|
990
|
+
radiusUnit = input('pixels', /* @ts-ignore */
|
|
991
|
+
...(ngDevMode ? [{ debugName: "radiusUnit" }] : /* istanbul ignore next */ []));
|
|
992
|
+
weight = input(/* @ts-ignore */
|
|
993
|
+
...(ngDevMode ? [undefined, { debugName: "weight" }] : /* istanbul ignore next */ []));
|
|
952
994
|
/** Computed radius in pixels based on current resolution if unit is 'meters' */
|
|
953
995
|
scaledRadius = computed(() => {
|
|
954
996
|
const r = this.radius();
|
|
955
997
|
if (this.radiusUnit() === 'pixels')
|
|
956
998
|
return r;
|
|
957
999
|
return r / this.mapService.resolution();
|
|
958
|
-
},
|
|
1000
|
+
}, /* @ts-ignore */
|
|
1001
|
+
...(ngDevMode ? [{ debugName: "scaledRadius" }] : /* istanbul ignore next */ []));
|
|
959
1002
|
/** Computed blur in pixels based on current resolution if unit is 'meters' */
|
|
960
1003
|
scaledBlur = computed(() => {
|
|
961
1004
|
const b = this.blur();
|
|
962
1005
|
if (this.radiusUnit() === 'pixels')
|
|
963
1006
|
return b;
|
|
964
1007
|
return b / this.mapService.resolution();
|
|
965
|
-
},
|
|
1008
|
+
}, /* @ts-ignore */
|
|
1009
|
+
...(ngDevMode ? [{ debugName: "scaledBlur" }] : /* istanbul ignore next */ []));
|
|
966
1010
|
constructor() {
|
|
967
1011
|
afterNextRender(() => {
|
|
968
1012
|
this.layerService.addLayer({
|
|
@@ -1003,15 +1047,14 @@ class OlHeatmapLayerComponent {
|
|
|
1003
1047
|
this.layerService.removeLayer(this.id());
|
|
1004
1048
|
});
|
|
1005
1049
|
}
|
|
1006
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1007
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
1050
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlHeatmapLayerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1051
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.0", type: OlHeatmapLayerComponent, isStandalone: true, selector: "ol-heatmap-layer", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: true, transformFunction: null }, features: { classPropertyName: "features", publicName: "features", isSignal: true, isRequired: false, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, opacity: { classPropertyName: "opacity", publicName: "opacity", isSignal: true, isRequired: false, transformFunction: null }, visible: { classPropertyName: "visible", publicName: "visible", isSignal: true, isRequired: false, transformFunction: null }, blur: { classPropertyName: "blur", publicName: "blur", isSignal: true, isRequired: false, transformFunction: null }, radius: { classPropertyName: "radius", publicName: "radius", isSignal: true, isRequired: false, transformFunction: null }, radiusUnit: { classPropertyName: "radiusUnit", publicName: "radiusUnit", isSignal: true, isRequired: false, transformFunction: null }, weight: { classPropertyName: "weight", publicName: "weight", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: '', isInline: true });
|
|
1008
1052
|
}
|
|
1009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlHeatmapLayerComponent, decorators: [{
|
|
1010
1054
|
type: Component,
|
|
1011
1055
|
args: [{
|
|
1012
1056
|
selector: 'ol-heatmap-layer',
|
|
1013
1057
|
template: '',
|
|
1014
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1015
1058
|
}]
|
|
1016
1059
|
}], ctorParameters: () => [], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: true }] }], features: [{ type: i0.Input, args: [{ isSignal: true, alias: "features", required: false }] }], zIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "zIndex", required: false }] }], opacity: [{ type: i0.Input, args: [{ isSignal: true, alias: "opacity", required: false }] }], visible: [{ type: i0.Input, args: [{ isSignal: true, alias: "visible", required: false }] }], blur: [{ type: i0.Input, args: [{ isSignal: true, alias: "blur", required: false }] }], radius: [{ type: i0.Input, args: [{ isSignal: true, alias: "radius", required: false }] }], radiusUnit: [{ type: i0.Input, args: [{ isSignal: true, alias: "radiusUnit", required: false }] }], weight: [{ type: i0.Input, args: [{ isSignal: true, alias: "weight", required: false }] }] } });
|
|
1017
1060
|
|
|
@@ -1044,21 +1087,29 @@ class OlWebGLVectorLayerComponent {
|
|
|
1044
1087
|
mapService = inject(OlMapService);
|
|
1045
1088
|
destroyRef = inject(DestroyRef);
|
|
1046
1089
|
/** Unique layer identifier */
|
|
1047
|
-
id = input.required(
|
|
1090
|
+
id = input.required(/* @ts-ignore */
|
|
1091
|
+
...(ngDevMode ? [{ debugName: "id" }] : /* istanbul ignore next */ []));
|
|
1048
1092
|
/** Features to render */
|
|
1049
|
-
features = input([],
|
|
1093
|
+
features = input([], /* @ts-ignore */
|
|
1094
|
+
...(ngDevMode ? [{ debugName: "features" }] : /* istanbul ignore next */ []));
|
|
1050
1095
|
/** WebGL flat style (required — no default provided) */
|
|
1051
|
-
flatStyle = input.required(
|
|
1096
|
+
flatStyle = input.required(/* @ts-ignore */
|
|
1097
|
+
...(ngDevMode ? [{ debugName: "flatStyle" }] : /* istanbul ignore next */ []));
|
|
1052
1098
|
/** Z-index for layer ordering */
|
|
1053
|
-
zIndex = input(0,
|
|
1099
|
+
zIndex = input(0, /* @ts-ignore */
|
|
1100
|
+
...(ngDevMode ? [{ debugName: "zIndex" }] : /* istanbul ignore next */ []));
|
|
1054
1101
|
/** Opacity (0–1) */
|
|
1055
|
-
opacity = input(1,
|
|
1102
|
+
opacity = input(1, /* @ts-ignore */
|
|
1103
|
+
...(ngDevMode ? [{ debugName: "opacity" }] : /* istanbul ignore next */ []));
|
|
1056
1104
|
/** Layer visibility */
|
|
1057
|
-
visible = input(true,
|
|
1105
|
+
visible = input(true, /* @ts-ignore */
|
|
1106
|
+
...(ngDevMode ? [{ debugName: "visible" }] : /* istanbul ignore next */ []));
|
|
1058
1107
|
/** Disable hit detection for better performance (default: true) */
|
|
1059
|
-
disableHitDetection = input(true,
|
|
1108
|
+
disableHitDetection = input(true, /* @ts-ignore */
|
|
1109
|
+
...(ngDevMode ? [{ debugName: "disableHitDetection" }] : /* istanbul ignore next */ []));
|
|
1060
1110
|
/** Style variables for dynamic expressions (e.g. `['var', 'threshold']`) */
|
|
1061
|
-
variables = input(
|
|
1111
|
+
variables = input(/* @ts-ignore */
|
|
1112
|
+
...(ngDevMode ? [undefined, { debugName: "variables" }] : /* istanbul ignore next */ []));
|
|
1062
1113
|
layer = null;
|
|
1063
1114
|
vectorSource = new VectorSource();
|
|
1064
1115
|
constructor() {
|
|
@@ -1169,15 +1220,14 @@ class OlWebGLVectorLayerComponent {
|
|
|
1169
1220
|
});
|
|
1170
1221
|
this.vectorSource.addFeatures(olFeatures);
|
|
1171
1222
|
}
|
|
1172
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1173
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
1223
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlWebGLVectorLayerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1224
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.0", type: OlWebGLVectorLayerComponent, isStandalone: true, selector: "ol-webgl-vector-layer", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: true, transformFunction: null }, features: { classPropertyName: "features", publicName: "features", isSignal: true, isRequired: false, transformFunction: null }, flatStyle: { classPropertyName: "flatStyle", publicName: "flatStyle", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, opacity: { classPropertyName: "opacity", publicName: "opacity", isSignal: true, isRequired: false, transformFunction: null }, visible: { classPropertyName: "visible", publicName: "visible", isSignal: true, isRequired: false, transformFunction: null }, disableHitDetection: { classPropertyName: "disableHitDetection", publicName: "disableHitDetection", isSignal: true, isRequired: false, transformFunction: null }, variables: { classPropertyName: "variables", publicName: "variables", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: '', isInline: true });
|
|
1174
1225
|
}
|
|
1175
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlWebGLVectorLayerComponent, decorators: [{
|
|
1176
1227
|
type: Component,
|
|
1177
1228
|
args: [{
|
|
1178
1229
|
selector: 'ol-webgl-vector-layer',
|
|
1179
1230
|
template: '',
|
|
1180
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1181
1231
|
}]
|
|
1182
1232
|
}], ctorParameters: () => [], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: true }] }], features: [{ type: i0.Input, args: [{ isSignal: true, alias: "features", required: false }] }], flatStyle: [{ type: i0.Input, args: [{ isSignal: true, alias: "flatStyle", required: true }] }], zIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "zIndex", required: false }] }], opacity: [{ type: i0.Input, args: [{ isSignal: true, alias: "opacity", required: false }] }], visible: [{ type: i0.Input, args: [{ isSignal: true, alias: "visible", required: false }] }], disableHitDetection: [{ type: i0.Input, args: [{ isSignal: true, alias: "disableHitDetection", required: false }] }], variables: [{ type: i0.Input, args: [{ isSignal: true, alias: "variables", required: false }] }] } });
|
|
1183
1233
|
|
|
@@ -1203,23 +1253,32 @@ class OlWebGLTileLayerComponent {
|
|
|
1203
1253
|
mapService = inject(OlMapService);
|
|
1204
1254
|
destroyRef = inject(DestroyRef);
|
|
1205
1255
|
/** Unique layer identifier */
|
|
1206
|
-
id = input.required(
|
|
1256
|
+
id = input.required(/* @ts-ignore */
|
|
1257
|
+
...(ngDevMode ? [{ debugName: "id" }] : /* istanbul ignore next */ []));
|
|
1207
1258
|
/** Tile source type */
|
|
1208
|
-
source = input.required(
|
|
1259
|
+
source = input.required(/* @ts-ignore */
|
|
1260
|
+
...(ngDevMode ? [{ debugName: "source" }] : /* istanbul ignore next */ []));
|
|
1209
1261
|
/** Tile URL template (required for 'xyz' and 'mvt') */
|
|
1210
|
-
url = input(
|
|
1262
|
+
url = input(/* @ts-ignore */
|
|
1263
|
+
...(ngDevMode ? [undefined, { debugName: "url" }] : /* istanbul ignore next */ []));
|
|
1211
1264
|
/** Attribution text */
|
|
1212
|
-
attributions = input(
|
|
1265
|
+
attributions = input(/* @ts-ignore */
|
|
1266
|
+
...(ngDevMode ? [undefined, { debugName: "attributions" }] : /* istanbul ignore next */ []));
|
|
1213
1267
|
/** WebGL tile style (raster expressions) or flat style (MVT) */
|
|
1214
|
-
tileStyle = input(
|
|
1268
|
+
tileStyle = input(/* @ts-ignore */
|
|
1269
|
+
...(ngDevMode ? [undefined, { debugName: "tileStyle" }] : /* istanbul ignore next */ []));
|
|
1215
1270
|
/** Z-index for layer ordering */
|
|
1216
|
-
zIndex = input(0,
|
|
1271
|
+
zIndex = input(0, /* @ts-ignore */
|
|
1272
|
+
...(ngDevMode ? [{ debugName: "zIndex" }] : /* istanbul ignore next */ []));
|
|
1217
1273
|
/** Opacity (0–1) */
|
|
1218
|
-
opacity = input(1,
|
|
1274
|
+
opacity = input(1, /* @ts-ignore */
|
|
1275
|
+
...(ngDevMode ? [{ debugName: "opacity" }] : /* istanbul ignore next */ []));
|
|
1219
1276
|
/** Layer visibility */
|
|
1220
|
-
visible = input(true,
|
|
1277
|
+
visible = input(true, /* @ts-ignore */
|
|
1278
|
+
...(ngDevMode ? [{ debugName: "visible" }] : /* istanbul ignore next */ []));
|
|
1221
1279
|
/** Preload low-res tiles up to this many zoom levels */
|
|
1222
|
-
preload = input(0,
|
|
1280
|
+
preload = input(0, /* @ts-ignore */
|
|
1281
|
+
...(ngDevMode ? [{ debugName: "preload" }] : /* istanbul ignore next */ []));
|
|
1223
1282
|
layer = null;
|
|
1224
1283
|
constructor() {
|
|
1225
1284
|
afterNextRender(() => {
|
|
@@ -1305,15 +1364,14 @@ class OlWebGLTileLayerComponent {
|
|
|
1305
1364
|
}
|
|
1306
1365
|
});
|
|
1307
1366
|
}
|
|
1308
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1309
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "
|
|
1367
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlWebGLTileLayerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1368
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.0", type: OlWebGLTileLayerComponent, isStandalone: true, selector: "ol-webgl-tile-layer", inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: true, transformFunction: null }, source: { classPropertyName: "source", publicName: "source", isSignal: true, isRequired: true, transformFunction: null }, url: { classPropertyName: "url", publicName: "url", isSignal: true, isRequired: false, transformFunction: null }, attributions: { classPropertyName: "attributions", publicName: "attributions", isSignal: true, isRequired: false, transformFunction: null }, tileStyle: { classPropertyName: "tileStyle", publicName: "tileStyle", isSignal: true, isRequired: false, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, opacity: { classPropertyName: "opacity", publicName: "opacity", isSignal: true, isRequired: false, transformFunction: null }, visible: { classPropertyName: "visible", publicName: "visible", isSignal: true, isRequired: false, transformFunction: null }, preload: { classPropertyName: "preload", publicName: "preload", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: '', isInline: true });
|
|
1310
1369
|
}
|
|
1311
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlWebGLTileLayerComponent, decorators: [{
|
|
1312
1371
|
type: Component,
|
|
1313
1372
|
args: [{
|
|
1314
1373
|
selector: 'ol-webgl-tile-layer',
|
|
1315
1374
|
template: '',
|
|
1316
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1317
1375
|
}]
|
|
1318
1376
|
}], ctorParameters: () => [], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: true }] }], source: [{ type: i0.Input, args: [{ isSignal: true, alias: "source", required: true }] }], url: [{ type: i0.Input, args: [{ isSignal: true, alias: "url", required: false }] }], attributions: [{ type: i0.Input, args: [{ isSignal: true, alias: "attributions", required: false }] }], tileStyle: [{ type: i0.Input, args: [{ isSignal: true, alias: "tileStyle", required: false }] }], zIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "zIndex", required: false }] }], opacity: [{ type: i0.Input, args: [{ isSignal: true, alias: "opacity", required: false }] }], visible: [{ type: i0.Input, args: [{ isSignal: true, alias: "visible", required: false }] }], preload: [{ type: i0.Input, args: [{ isSignal: true, alias: "preload", required: false }] }] } });
|
|
1319
1377
|
|
|
@@ -156,10 +156,10 @@ class OlMilitaryService {
|
|
|
156
156
|
throw new Error('createMilSymbol requires a browser environment');
|
|
157
157
|
}
|
|
158
158
|
}
|
|
159
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
160
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
159
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlMilitaryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
160
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlMilitaryService });
|
|
161
161
|
}
|
|
162
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
162
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlMilitaryService, decorators: [{
|
|
163
163
|
type: Injectable
|
|
164
164
|
}], ctorParameters: () => [] });
|
|
165
165
|
|
|
@@ -329,10 +329,10 @@ class OlTacticalGraphicsService {
|
|
|
329
329
|
const b = parseInt(hex.slice(5, 7), 16);
|
|
330
330
|
return `rgba(${r}, ${g}, ${b}, ${alpha})`;
|
|
331
331
|
}
|
|
332
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
333
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
332
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlTacticalGraphicsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
333
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlTacticalGraphicsService });
|
|
334
334
|
}
|
|
335
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: OlTacticalGraphicsService, decorators: [{
|
|
336
336
|
type: Injectable
|
|
337
337
|
}] });
|
|
338
338
|
|