diff options
Diffstat (limited to 'wk8/lect/geolocation.html')
-rw-r--r-- | wk8/lect/geolocation.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/wk8/lect/geolocation.html b/wk8/lect/geolocation.html new file mode 100644 index 0000000..6abaaa5 --- /dev/null +++ b/wk8/lect/geolocation.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> + +<html lang="en"> + <head> + <title>geolocation</title> + </head> + <body> + <script> + + navigator.geolocation.getCurrentPosition(function(position) { + document.write(position.coords.latitude + ", " + position.coords.longitude); + }); + </script> + </body> +</html> |