Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How retrieve latitude and longitude via Google Maps API?

share|improve this question
3  
You're going to need to elaborate more on exactly what you're trying to do. – Amber May 5 '10 at 3:32

5 Answers

If you need to find out the latitude and longitude of an address using the Google Maps API, you need to use the Google Maps Geocoding Service:

var map = new GMap2(document.getElementById("map_canvas"));
var geocoder = new GClientGeocoder();

var address = "1600 Amphitheatre Parkway, Mountain  View";
geocoder.getLatLng(address, function(point) {
         var latitude = point.y;
         var longitude = point.x;  

         // do something with the lat lng
    });

If you would like to get the latitude and longitude of a position clicked on your Google map, you can do this in the click event:

GEvent.addListener(map, "click", function(marker,point) {
        var latitude = point.y;
        var longitude = point.x;

        // do something with the lat/lng
    });
share|improve this answer
Thanks! How do I get GEvent. on my html or jsp page? Do I need to include any js. I am using code.google.com/p/struts2-map-plugin/wiki/MapTag, but this does not have tag on map function so looking for something that you showed in second example here. – Amol Ghotankar May 15 at 10:51

With API v3

google.maps.event.addListener(map, 'click', function(event){
   alert('Lat: ' + event.latLng.lat() + ' and Longitude is: ' + event.latLng.lng());
}

Likewise you can retrieve when a marker is dragged dropped :

google.maps.event.addListener(marker, 'dragstart', function(event){
   alert('Lat: ' + event.latLng.lat() + ' and Longitude is: ' + event.latLng.lng());
}
share|improve this answer
Thanks for this. – Jake Gaston Nov 14 '12 at 18:24
Note: since my edit was rejected, this is missing parentheses and a semicolon that need to be added before it will work. Also, suggest changing dragstart to dragend so that you will get an alert AFTER you place the marker (not as soon as you pick it up). – Wesley Baugh Apr 21 at 9:31

I am not sure if you are requesting a way of getting latitude and longitude via code(although you did say API :) ), If you are then there are a million posts out there which will show you how(including the ones above), but if you are interested in some kinda utility which just tells you where you are clicking , then Google-maps already comes with it. check out his post here on how to enable that functionality.

http://varunpant.com/posts/find-longitude-and-latitude-in-google-maps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.