Reputation: 1240
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
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
Reputation: 190915
Yes there is. It is called geocoding. Here is Google's API: http://code.google.com/apis/maps/documentation/geocoding/
Upvotes: 1