I am upgrading my codes from Google Map API V2 to V3. In V2, I used GlocalSearch to get the latitude and longitude for the given address.

In V3, I saw google.maps.Geocoder() and try to get the similar detail. However, the lat & long given by the V3 function is not accurate.

Pls see the following screenshot here: Wrong Correct

My codes for V3 are as follow:

var geocoder = new google.maps.Geocoder();
function codeAddress(address) {
    if (geocoder) 
    {
        address = address + ", UK";

        geocoder.geocode( { 'address': address}, function(results, status) {
            if (status == google.maps.GeocoderStatus.OK) {
                var latlng = results[0].geometry.location;              
                addMarker(latlng); //Adding Marker here             
            } else {
                alert("Geocode was not successful for the following reason: " + status);
            }
        });
    }
}

Is there better way to get the accurate result in API V3? Thanks.

link|improve this question

75% accept rate
I have noticed that in V3, when I search for a business, it just takes me to the APPROXIMATE location (at least from where I am at, Philippines). And since I could not make V3 and Localsearch work together, I decided to use V2 and Localsearch instead. I used the V2 geocoding and then Localsearch to display the markers. – wenbert Aug 10 '10 at 15:36
feedback

2 Answers

Log the value of the location property and check if the coordinates are correct.

Post the addMarker method code.

link|improve this answer
feedback

Another option is to call the web service which will result results in either JSON or XML format and then you can formulate these results to get the desired location. There are plenty of examples on google maps v3 documentation

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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