diff --git a/src/app/map/components/map.component.ts b/src/app/map/components/map.component.ts
index 61da5c52dc51eb9ba70bfc45bb193abfc5555f72..9ca53b1921bcfb3e2a4969fee134a0194153cd09 100644
--- a/src/app/map/components/map.component.ts
+++ b/src/app/map/components/map.component.ts
@@ -193,7 +193,6 @@ export class MapComponent implements OnChanges {
     this.map = map;
     // Handle location
     this.lc = L.control.locate(this.locateOptions).addTo(this.map);
-    // .locate(this.locateOptions).addTo(this.map);
     this.map.on('locationfound', () => {
       this.locatationTrigger.emit(true);
     });
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
index e38926865d1b586bd40aa359accd6bdd5b91e90d..b84aafe94e64286d9145c6538f94b31b3c246286 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
@@ -1,7 +1,6 @@
-import { Component, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core';
+import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { FormBuilder, FormGroup } from '@angular/forms';
 import { forkJoin } from 'rxjs';
-import { GeoJson } from '../../../map/models/geojson.model';
 import { GeojsonService } from '../../../services/geojson.service';
 import { TypeModal } from '../../enum/typeModal.enum';
 import { Category } from '../../models/category.model';
@@ -17,7 +16,7 @@ import { ActivatedRoute, Router } from '@angular/router';
   templateUrl: './structure-list-search.component.html',
   styleUrls: ['./structure-list-search.component.scss'],
 })
-export class StructureListSearchComponent implements OnInit, OnChanges {
+export class StructureListSearchComponent implements OnInit {
   @Output() searchEvent = new EventEmitter();
 
   // Show/hide form createStructure
@@ -47,9 +46,7 @@ export class StructureListSearchComponent implements OnInit, OnChanges {
   constructor(
     public searchService: SearchService,
     private fb: FormBuilder,
-    private geoJsonService: GeojsonService,
     private activatedRoute: ActivatedRoute,
-    private location: Location,
     private route: ActivatedRoute,
     private router: Router
   ) {
@@ -69,12 +66,6 @@ export class StructureListSearchComponent implements OnInit, OnChanges {
     }
   }
 
-  ngOnChanges(changes: SimpleChanges): void {
-    if (changes.locate && changes.locate.currentValue && !changes.locate.previousValue) {
-      this.locateMe();
-    }
-  }
-
   // Accessor to template angular.
   public get TypeModal(): typeof TypeModal {
     return TypeModal;
@@ -173,19 +164,6 @@ export class StructureListSearchComponent implements OnInit, OnChanges {
     this.modalTypeOpened = undefined;
   }
 
-  // Get adress and put it in input
-  public locateMe(): void {
-    navigator.geolocation.getCurrentPosition((position) => {
-      const longitude = position.coords.longitude;
-      const latitude = position.coords.latitude;
-      this.geoJsonService.getAddressByCoord(longitude, latitude).subscribe((geoPosition: GeoJson) => {
-        const adress = geoPosition.properties.name;
-        this.searchForm.setValue({ searchTerm: adress });
-        this.applyFilter(adress);
-      });
-      this.locatationTrigger.emit(true);
-    });
-  }
   // Management of the checkbox event (Check / Uncheck)
   public numericPassCheck(event, categ): void {
     const checkValue: string = event.target.value;