Given that you have this circle defined on your map, how would you get the LatLong of the point that intersects at a given angle?
var degrees = 90;
var center = {lat: 34.052235, lng: -118.243683};
var circle = new google.maps.Circle({
center: center,
radius: 500000
});
var pointOnCircle = ?