On Jan 17, 4:46 pm, Shail <[email protected]> wrote: > Hi All, > > I want to find all the zip codes within a radius (eg. 10 miles) of > a given zip code. I have downloaded zip code database > fromwww.census.gov website. This database contain all the zip codes > with longitude & latitude detail. Is there any google service > available to perform this task.
If you want all the zip codes whose center is within the given radius of you original point, it is just math. Search for the haversine formula, or try this website: http://www.movable-type.co.uk/scripts/latlong.html To do it using the API in the client (which is the topic of this group), look at GLatLng.distanceFrom: http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GLatLng.distanceFrom -- Larry > > Regards, > Shailesh -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
