Suriyan Suresh
Suriyan Suresh

Reputation: 3024

how to get latitude and longitude for particular landmark?

how to get latitude and longitude for particular landmark/business, i would like to get lat/long for specific address how to i do that? shall i use gps device to get the lat/long?

Upvotes: 3

Views: 2376

Answers (4)

SoftwareDev
SoftwareDev

Reputation: 714

Very recently, two or three weeks ago, Google released a new API that lets you do just what you want.

This is how it works:

http://maps.google.com/maps/api/geocode/format?address=some_address&sensor=true_or_false

And here is an example:

http://maps.google.com/maps/api/geocode/xml?address=Lenox+Hill&sensor=false

The format can be JSON or XML.

Upvotes: 1

Bolster
Bolster

Reputation: 7906

Yahoo http://developer.yahoo.com/geo/geoplanet/guide/concepts.html

You can query for a free-form name such as address, etc, and it will return what is called a WOEID, then query the WOEID for its lat long.

Upvotes: 0

Mikos
Mikos

Reputation: 8553

You will need to use a Geolocation API (such as Google or Bing or Yahoo), and there might be others as well. But those are the "free" (with caveats) ones that come to mind.

Just remember they have rather strict Terms-of-use of how you can use their API, so be sure you are on the right side of the law.

http://msdn.microsoft.com/en-us/library/cc981067.aspx

http://code.google.com/apis/maps/documentation/

Upvotes: 1

Michael Ulmann
Michael Ulmann

Reputation: 1087

Can you elaborate a bit more on that? What type of application is that? What is the format of the landmark/business? Basically there are geo web services out there that do this kind of stuff...

Have a look at this for example:

http://www.geonames.org/maps/us-reverse-geocoder.html

http://www.geonames.org/export/ws-overview.html

Upvotes: 0

Related Questions