@provoly/dashboard 1.3.19 → 1.3.21
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/esm2022/lib/core/model/widget-map-manifest.interface.mjs +1 -1
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
- package/esm2022/lib/dashboard/store/dashboard.effects.mjs +2 -2
- package/esm2022/lib/dashboard/store/wms.service.mjs +7 -6
- package/esm2022/widgets/widget-map/component/widget-map-layer.service.mjs +2 -1
- package/esm2022/widgets/widget-map/interaction/tooltip-manager.class.mjs +3 -2
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +3 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +7 -6
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/model/widget-map-manifest.interface.d.ts +1 -0
- package/lib/dashboard/store/dashboard.actions.d.ts +2 -0
- package/lib/dashboard/store/wms.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -103,6 +103,7 @@ export interface MapGeoServerLayerOptions extends BaseWidgetMapLayerOptions {
|
|
|
103
103
|
name: string;
|
|
104
104
|
getWfsFeaturesForTooltips?: boolean;
|
|
105
105
|
additionalParameters?: any;
|
|
106
|
+
geomPropName?: string;
|
|
106
107
|
}
|
|
107
108
|
export interface MapAutoLayerOptions extends BaseWidgetMapLayerOptions {
|
|
108
109
|
type: 'auto';
|
|
@@ -468,11 +468,13 @@ export declare const DashboardActions: {
|
|
|
468
468
|
oClass: string;
|
|
469
469
|
coordinates: number[];
|
|
470
470
|
componentId: string;
|
|
471
|
+
geomProName: string;
|
|
471
472
|
}) => {
|
|
472
473
|
url: string;
|
|
473
474
|
oClass: string;
|
|
474
475
|
coordinates: number[];
|
|
475
476
|
componentId: string;
|
|
477
|
+
geomProName: string;
|
|
476
478
|
} & import("@ngrx/store/src/models").TypedAction<"[Widget map] Get wfs Features for showing stack tooltips">>;
|
|
477
479
|
updateDisplayOptions: import("@ngrx/store").ActionCreator<"[Dashboard/Display] (bus) Update displayed dashboard management features", (props: {
|
|
478
480
|
mode: ViewMode;
|
|
@@ -13,7 +13,7 @@ export declare class WmsService {
|
|
|
13
13
|
getWmsFeatures(url: string): Observable<{
|
|
14
14
|
features: any[];
|
|
15
15
|
}>;
|
|
16
|
-
getWfsFeatures(wmsUrl: string, bbox: number[]): Observable<{
|
|
16
|
+
getWfsFeatures(wmsUrl: string, bbox: number[], geomPropName: string): Observable<{
|
|
17
17
|
features: any[];
|
|
18
18
|
}>;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<WmsService, never>;
|