How can I test if a LatLng point is within the bounds of a circle? (Google Maps JavaScript v3)
The getBounds() method returns the bounding box for the circle, which
Use the spherical geometry library (be sure to include it with the API)
function pointInCircle(point, radius, center) { return (google.maps.geometry.spherical.computeDistanceBetween(point, center) <= radius) }