views:

65

answers:

1

I want to better understand what is required in order to implement a geo-spatial (aka proximity) search. I'd appreciate clarification on the following:

  1. Beyond the latitude & longitude for corresponding zip codes, what if anything, is required?

  2. Can anyone recommend any resources (books, websites, etc.) for understanding the formulas that can be used to calculate proximity such as: Haversine, Vincenty, Spherical?

  3. How easy and effective are Mysql's tools for implementing proximity searches?

  4. Does Google Maps have an API for proximity searches? For example if I provide, a zip code can it return zip codes within a set radius? I searched the Google Maps website but found nothing of the sort.

Thanks.

+1  A: 
andand
I looked further into google maps api and it seems that they do NOT provide such a feature. I ended up using mysql's spatial database features. Thanks.
ABK07