I would like to draw a circle on a map, and get all rows in my database with geo the lat/lng points that fall into that circle.
I don't want draw the circle using google.maps.Circle
as that applies mercator projection distortion. I want a geometric rather than geographic circle.
So I can probably draw this to Google maps using an overlay of some sorts. But is it possible to query my database for these points?
If I were to draw a geographic circle I could use the haversine formula, but that won't work for a geometric circle.