I need to access a variable from a .getCurrentPosition() function [требует правки]

266
20 марта 2017, 10:01

Here is the code and i want for example to access the latitudw variable outside of this function and for example set to its value.

<script>
  var latitude = "b";
  var longitude = "c";
  navigator.geolocation.getCurrentPosition(function showLocation(position) {
    latitude = position.coords.latitude;
    longitude = position.coords.longitude; 
  });
  navigator.geolocation.getCurrentPosition(showLocation(position);
  $(".test").html(latitude)
</script>
READ ALSO
Перерисовать jquery ui range slider

Перерисовать jquery ui range slider

Как динамически изменить min и max в jquery ui ползунке? Мне нужно будет перерисовать элемент

314