I created a circle using the Google Maps V3 API and also tried to make a circle of markers with the same radius.
Problem: The one I created is oblique while the one by Google Maps is a nice round circle. What went wrong?
Google Maps V3 Circle Code
// Draw search circle
search_circle = new google.maps.Circle;
search_circle.setCenter(target_latlng);
search_circle.setRadius(travel_time * average_speed);
search_circle.setMap(map);