Get the Geolocation data

2018-03-16  本文已影响9人  成江
<script>
  // Only change code below this line.
  
  if (navigator.geolocation) {
  navigator.geolocation.getCurrentPosition(function(position) {
    $("#data").html("latitude: " + position.coords.latitude + "<br>longitude: " + position.coords.longitude);
  });
}
  
  // Only change code above this line.
</script>
<div id = "data">
  <h4>You are here:</h4>
  
</div>
上一篇下一篇

猜你喜欢

热点阅读