Jump to content

Undefined error


thilakan

Recommended Posts

Undefined  error

Why I am getting this error?

 

What I am trying archive - 

       I want to get the client location and stored in the database

 

Please advise me.

Thank you.

<!DOCTYPE html>
<html>
<body>


<script>


function geoFindMe() {
  var output ;

  if (!navigator.geolocation){
     output.innerHTML = "<p>Geolocation is not supported by your browser</p>";
    return;
  } else {

  function success(position) {
    var latitude  = position.coords.latitude;
    var longitude = position.coords.longitude;

     return(output.innerHTML = '<p>Latitude is ' + latitude + '° <br>Longitude is ' + longitude + '°</p>');

  };

  function error() {
    output.innerHTML = "Unable to retrieve your location";
  };


  navigator.geolocation.getCurrentPosition(success, error);
  
  }
}

var x = geoFindMe();
alert(x);
</script>

</body>
</html>

Edited by thilakan
Link to comment
Share on other sites

getCurrentPosition makes an asynchronous call to a service to determine location (assuming user accepts the popup prompt to allow it).  So, you can't just assign it to x and get immediate results.  It's just like doing an AJAX call where you have a callback function (success) when results are returned.  So, you need to refactor your code to wait for success (or error) to be called.  You can use pretty much any AJAX tutorial / script for tips/principles on how to work with async calls. 

Edited by .josh
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.