Nearest Zip Code Search using asp.net

后端 未结 3 1589
暖寄归人
暖寄归人 2020-12-21 11:49

I want to inplement functionallity that will search zip codes, if user enter any zip code than all the zip codes close to entered zip code will be shown. Please let us know

3条回答
  •  清酒与你
    2020-12-21 12:29

    First, grab a free zip code database like this one. This will allow you to convert from an entered zip code to a latitude and longitude. As long as you make latitude and longitude database keys also, you can now look up all the nearby latitudes and longitudes (by moving up and down in the sorted values) and get all ZIP codes within a desired distance.

    Here is an example of how to calculate latitude and longitude distances.

提交回复
热议问题