I want to get list of latitude and longitude using google map
i have this kind of flow
- enter zip code
- enter distance in miles such as (5,10,20,30,40,50)
Output :-
this will be generate a list of latitude and longitude with in given distance and zip code.
is it possible throw google map?
please kindly reply if anybody have solution of this.
Google maps has a nice little page you can access to get geo coordinates:
http://maps.google.com/maps/geo?q=New%20York&output=csv&key=YOURGOOGLEAPIKEY
You'll need a google API key. And then just replace "New%20York" with your location. And it will output this:
200,4,40.7143528,-74.0059731
the 3rd and 4th item are the latitude and longitude
精彩评论