tags:

views:

34

answers:

3

are any way to get the latitude or longitude of a location. if yes then how.

are any way to do this using google map api.

+4  A: 

All information on Google Maps API can be found here:

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

And here is the Latitude/Longitude section:

http://code.google.com/apis/maps/documentation/javascript/tutorial.html#LatLng

Ardman
A: 

you will need to use the geocoding service from google maps :)

here's the documentation

and an example, a simple one you can use as a starting point of your application :)

aniri
+1  A: 

a simple method 'in browser' is just to center the map at the point you want then paste the following javascript into the address bar:

javascript:void(prompt('',gApplication.getMap().getCenter())); 
bharling