views:

33

answers:

2

I have all info City name,state,Country,street name,house number and zip code.Can i locate this in Google map.How will i do? From where i can get API for google for such problems?

+1  A: 

Here the source for all the APIs built off of Google maps with documentation.

http://code.google.com/apis/maps/index.html

darkstar3d
can i set google map only by ZIPCODE ?
Ajay_kumar
Yes you can such as http://maps.google.com/maps?q=20066
darkstar3d
+1  A: 

I'm assuming you want to get the lat/lng for your addresses. You do this with google's geocoder api

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

Then you can add them to the map with their map api

http://code.google.com/apis/maps/documentation/javascript/reference.html

Galen