I would like to draw a unit circle with labelled coordinates of points on it as well as lines that intersect the circle like this:

The code that I pasted below does part of the job. But I want
- coordinates that are larger,
- the lines, and
- the slopes of the lines labelled, ideally without the lines intersecting the labels.
I would greatly appreciate help.
% Unit circle % Author: Supreme Aryal % A unit circle with cosine and sine values for some % common angles. \documentclass[landscape]{article} \usepackage{tikz} %%%< \usepackage{verbatim} \usepackage[active,tightpage]{preview} \PreviewEnvironment{tikzpicture} \setlength\PreviewBorder{5pt}% %%%> \begin{comment} :Title: Unit circle A unit circle with cosine and sine values for some common angles. \end{comment} \usepackage[top=1in,bottom=1in,right=1in,left=1in]{geometry} \begin{document} \begin{tikzpicture}[scale=5.3,cap=round,>=latex] % draw the coordinates \draw[->] (-1.5cm,0cm) -- (1.5cm,0cm) node[right,fill=white] {$x$}; \draw[->] (0cm,-1.5cm) -- (0cm,1.5cm) node[above,fill=white] {$y$}; % draw the unit circle \draw[thick] (0cm,0cm) circle(1cm); \foreach \x in {0,30,...,360} { % lines from center to point % dots at each point \filldraw[black] (\x:1cm) circle(0.4pt); % draw each angle in degrees } \foreach \x/\xtext/\y in { % the coordinates for the first quadrant 30/\frac{\sqrt{3}}{2}/\frac{1}{2}, 45/\frac{\sqrt{2}}{2}/\frac{\sqrt{2}}{2}, 60/\frac{1}{2}/\frac{\sqrt{3}}{2}, % the coordinates for the second quadrant 150/-\frac{\sqrt{3}}{2}/\frac{1}{2}, 135/-\frac{\sqrt{2}}{2}/\frac{\sqrt{2}}{2}, 120/-\frac{1}{2}/\frac{\sqrt{3}}{2}, % the coordinates for the third quadrant 210/-\frac{\sqrt{3}}{2}/-\frac{1}{2}, 225/-\frac{\sqrt{2}}{2}/-\frac{\sqrt{2}}{2}, 240/-\frac{1}{2}/-\frac{\sqrt{3}}{2}, % the coordinates for the fourth quadrant 330/\frac{\sqrt{3}}{2}/-\frac{1}{2}, 315/\frac{\sqrt{2}}{2}/-\frac{\sqrt{2}}{2}, 300/\frac{1}{2}/-\frac{\sqrt{3}}{2}} \draw (\x:1.45cm) node[fill=white] {$\left(\xtext,\y\right)$}; % draw the horizontal and vertical coordinates % the placement is better this way \draw (-1.25cm,0cm) node[above=1pt] {$(-1,0)$} (1.25cm,0cm) node[above=1pt] {$(1,0)$} (0cm,-1.25cm) node[fill=white] {$(0,-1)$} (0cm,1.25cm) node[fill=white] {$(0,1)$}; \end{tikzpicture} \end{document} 


