mirror of
https://github.com/teampoltergeist/poltergeist.git
synced 2022-11-09 12:05:00 -05:00
14 lines
342 B
Text
14 lines
342 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<p>Location: <span id='location'></span></p>
|
|
<script type="text/javascript">
|
|
navigator.geolocation.getCurrentPosition(function(position)
|
|
{
|
|
document.getElementById('location').innerHTML = position.coords.latitude+','+position.coords.longitude;
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|