Cheerio
Cheerio

Reputation: 1240

Confused - How to get the geocode for an address (Google Maps)

I create a small web app, the user add his address and I want to show the map for his address. Is there a way to get the latitude and longitude for an address? with Google Maps.

Upvotes: 0

Views: 16558

Answers (2)

aniri
aniri

Reputation: 1831

Or you could use the geocoding service from google maps: http://code.google.com/apis/maps/documentation/javascript/services.html#Geocoding

Here's a simple example for it: http://code.google.com/apis/maps/documentation/javascript/examples/geocoding-simple.html

Upvotes: 2

Daniel A. White
Daniel A. White

Reputation: 190915

Yes there is. It is called geocoding. Here is Google's API: http://code.google.com/apis/maps/documentation/geocoding/

Upvotes: 1

Related Questions