diff --git a/src/app/components/map/map.component.ts b/src/app/components/map/map.component.ts
index bf19265e44ad7d3af6d60cfab601afaae705f072..9b604089d7cdce84c00b57e951da815ed34a63bb 100644
--- a/src/app/components/map/map.component.ts
+++ b/src/app/components/map/map.component.ts
@@ -152,8 +152,8 @@ export class MapComponent implements OnInit {
     // --- Orientation
     if ('x' in point) {
       let orient: RelativePos = {
-        "x": point.x + (theta ? Math.sin(theta)*3 : 0), 
-        "y": point.y + (theta ? Math.cos(theta)*3 : 3.5),
+        "x": point.x + (theta ? Math.cos(theta)*3.5 : 3.5), 
+        "y": point.y + (theta ? Math.sin(theta)*3.5 : 0),
         "z": point.z
       }
       let globPointOrient = this.ref2root(orient)