I can do this to convert a lat/lng to pixel coordinates in Google maps:
var xy = map.getProjection().fromLatLngToDivPixel(new google.maps.LatLng(lat, lng));
Now I’m wondering, how do I get a distance in pixels from that point? Say I want to draw a circle with a radius of 5 miles around that. How do I do that?
In v3 there is the circle object