Doubt with use of Geoposition

Asked

Viewed 21 times

0

Good morning, I don’t have much practice with Javascript (I had contact only during a period at CEDERJ). Now I need the blessed one, and I’m not getting out of a situation. I’m going to post the code:

coordenadas = ""; /* Defini essa variável, pelo que sei por ter omitido a palavra 'var' ela é global */

function sucesso(posicao) {             
  coordenadas = posicao.coords.latitude;
  /* coordenadas = posicao.coords.longitude; */
  /* coordenadas = posicao.timestamp; */
  /* Evidentemente em produção vou usar uma variável para cada valor ou um array */

    document.write(coordenadas); //Aqui dentro ela escreve o valor da latitude */
}
        
if('geolocation' in navigator) {        
  navigator.geolocation.getCurrentPosition(sucesso);                
} 
else {
    alert("Navegador incompatível com esse recurso");
}
            
document.write(coordenadas); /* Aqui eu NÃO consigo pegar o valor */

Basically I want to save the values of Latitude, Longitude and Timestamp in variables so I can use them later. I count on your help.

Thank you.

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.