Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

On a mobile site I am trying to get city name from google location api with coordinates provided by html5 location api. Can i I request city name with coordinates? Code below doesn't get city name and fails on findloc() as I couldn't find out how to provide coordinates to google location api

<script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="https://www.google.com/jsapi?key=mykey" type="text/javascript"></script>
<script type="text/javascript">
    jQuery(document).ready(function () {
        if (navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(success, error);
        } else {
            alert('not supported');
        }
      });

    function success(position) {
        var lat = position.coords.latitude;
        var lon = position.coords.longitude;
        google.load("maps", "2", { callback: findloc });
    }
    function error(msg) {
        alert('failed to get coordinates');
    }
    function findloc() {
        if (google.loader.ClientLocation) {
            alert(google.loader.ClientLocation.address.city);
        }
        else {
            alert('fail');
        }
    }

</script>

can anoyne help?

thanks

share|improve this question
See here for the answer you need -> [stackoverflow.com/questions/6797569/… [1]: stackoverflow.com/questions/6797569/… – Matt W Dec 20 '11 at 11:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.