I wish to draw the text "USA" on path_1 using options as it was drawn "USA" in path_2, but draw without using nodes,only using edge in path_1.
\documentclass{article}
\usepackage{tikz}
\usepackage{accsupp}
\usetikzlibrary{mindmap}
\begin{document}
\begin{tikzpicture}
\node (energy1) at (30:10cm){Text};
\node (energy2) at (90:10cm) {Text};
%path_1 \draw [circle connection bar]
(energy1) edge (energy2) %draw above USA this path without using node;
%path_2 \draw (energy1)--node[orange,sloped,above=0.5cm,align=center,text width=8cm]{USA}(energy2);
\end{tikzpicture}
\end{document}


