diff --git a/src/Components/Map/Subcomponents/Controls/SearchControl.tsx b/src/Components/Map/Subcomponents/Controls/SearchControl.tsx
index d00a534f..f4d1e5d8 100644
--- a/src/Components/Map/Subcomponents/Controls/SearchControl.tsx
+++ b/src/Components/Map/Subcomponents/Controls/SearchControl.tsx
@@ -167,7 +167,7 @@ export const SearchControl = () => {
))}
{isGeoCoordinate(value) &&
{
- L.marker(new LatLng(extractCoordinates(value)![0], extractCoordinates(value)![1]), { icon: MarkerIconFactory("circle", "#777", "RGBA(35, 31, 32, 0.2)", "circle-solid") }).addTo(map).bindPopup(`
${extractCoordinates(value)![0]}, ${extractCoordinates(value)![1]}
`).openPopup().addEventListener("popupclose", (e) => { console.log(e.target.remove()) });
+ L.marker(new LatLng(extractCoordinates(value)![0], extractCoordinates(value)![1]), { icon: MarkerIconFactory("circle", "#777", "RGBA(35, 31, 32, 0.2)", "point") }).addTo(map).bindPopup(`${extractCoordinates(value)![0]}, ${extractCoordinates(value)![1]}
`).openPopup().addEventListener("popupclose", (e) => { console.log(e.target.remove()) });
map.setView(new LatLng(extractCoordinates(value)![0], extractCoordinates(value)![1]), 15, { duration: 1 })
}}>