Disclaimer: I am slow learner; I have a list of 300 businesses with address and grid coordinates. I know how to request a users location with HTML5 Geolocation. How do I use that information to determine which businesses are nearest to the user? I have found allot of tutorials but nothing exact and I'm lost. I am open to any technology or language to do this yet I would like to keep it simple. I have an IIS7 server and an OSX server and I could create a My SQL database or use SQL server 2008.

link|improve this question

75% accept rate
look up the haversine function. – Ollie Jones Nov 23 '11 at 12:51
feedback

1 Answer

up vote 0 down vote accepted

Get the distance between two points using Haversine or similar, see here - http://www.movable-type.co.uk/scripts/latlong.html

Then you just need to return all those points that fall within a certain radius of your originating point.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.