“HTML API” Kod odpowiedzi

HTML API

const myElement = document.getElementById("demo");

function getLocation() {
  if (navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(showPosition);
  } else {
    myElement.innerHTML = "Geolocation is not supported by this browser.";
  }
}

function showPosition(position) {
  myElement.innerHTML = "Latitude: " + position.coords.latitude +
  "<br>Longitude: " + position.coords.longitude;
}
HandsomeOldGod5355

HTML API

const myElement = document.getElementById("demo");

function getLocation() {
  if (navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(showPosition);
  } else {
    myElement.innerHTML = "Geolocation is not supported by this browser.";
  }
}

function showPosition(position) {
  myElement.innerHTML = "Latitude: " + position.coords.latitude +
  "<br>Longitude: " + position.coords.longitude;
}
HandsomeOldGod5355

Odpowiedzi podobne do “HTML API”

Pytania podobne do “HTML API”

Więcej pokrewnych odpowiedzi na “HTML API” w HTML

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu