I have about 20 events (UK based if that makes a difference).

I will also have a form on a page where people can register their interest in attending one of these events. After they have submitted this form, they will be shown the location of the closest event to them.

Trouble is I have no idea how to do this. Is there anything linked to google maps that can achieve this or do I need to buy something that does this... or can it be fairly easily achieved server side based on the fact I only have a small number of events.

If it needs to be done server side I'm running asp.net (vb) or I'm fairly up to speed with javascript/jquery.

Thanks

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Most likely what you want is the harvesine-formule-math to calculate the distance from your client's location and your event. Like Luke worked it out a spatial index-query enabled database can help you greatly.

link|improve this answer
I had to create an SQL database of all the lat/long in relation to databases (this is on the web) then write an SQL query using the haversine formula to work out the distance. – Tom Mar 22 '11 at 11:46
feedback

I wrote a site & free API that does this for you if it's any use - http://postcod.es

link|improve this answer
feedback

Take a look at this post by Howard van Rooijen:

http://howard.vanrooijen.co.uk/2010/05/05/ordnance-surveys-gb-postcode-to-longitude-latitude-dataset/

He has taken the Ordinance Survey postcode data and made it available in various usable forms (SQL Server 2005, 2008 and Mongo). You can then run a spatial query server-side against this data to find how many postcodes are within a given range of the event postcode.

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.