开发者

get list of latitude and longitude using google map

开发者 https://www.devze.com 2023-03-29 03:03 出处:网络
开发者_如何学JAVAI want to get list of latitude and longitude using google map i have this kind of flow
开发者_如何学JAVA

I want to get list of latitude and longitude using google map

i have this kind of flow

  1. enter zip code
  2. 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

0

精彩评论

暂无评论...
验证码 换一张
取 消