diff --git a/src/components/SharedComponents/Map/Map.tsx b/src/components/SharedComponents/Map/Map.tsx
index c4fcf7c71..6770701f4 100644
--- a/src/components/SharedComponents/Map/Map.tsx
+++ b/src/components/SharedComponents/Map/Map.tsx
@@ -444,6 +444,10 @@ const Map = ( {
!observation.obscured || observation.privateLatitude
);
+ const latitude = observation?.privateLatitude || observation?.latitude;
+ const longitude = observation?.privateLongitude || observation?.longitude;
+ const hasCoordinates = latitude && longitude;
+
return (
)}
- { observation && ( currentUserCanViewCoords
+ { observation && hasCoordinates && ( currentUserCanViewCoords
? (
)
: (
)
) }