16 lines
264 B
HTML
Executable File
16 lines
264 B
HTML
Executable File
<html>
|
|
<body>
|
|
<script>
|
|
window.onload = init;
|
|
|
|
function init() {
|
|
navigator.geolocation.getCurrentPosition(showGeoPosition);
|
|
}
|
|
|
|
function showGeoPosition(data) {
|
|
console.dir(data);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|