From 1118c5ca60761a960081d986abf67d055abafc45 Mon Sep 17 00:00:00 2001 From: Peter Bastiani Date: Fri, 15 Dec 2023 14:00:48 +0100 Subject: [PATCH] Aw3998 Add click --- projects/common-map/src/fm-map/components/map/map.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/common-map/src/fm-map/components/map/map.component.ts b/projects/common-map/src/fm-map/components/map/map.component.ts index 692ae43..a3f3b04 100644 --- a/projects/common-map/src/fm-map/components/map/map.component.ts +++ b/projects/common-map/src/fm-map/components/map/map.component.ts @@ -192,6 +192,7 @@ export class MapComponent implements OnInit, OnDestroy,AfterViewInit { } handleFeatureClick(feature: Feature) { + this.store.dispatch(new mapActions.ClickFeature(feature)); this.clickedFeature.next(feature); }