HTML & JavaScript Geo Location test: Difference between revisions
(Created page with "[NOWIKI] <p>Click the button to get your coordinates.</p> <button onclick="getLocation()">Try It</button> <p id="demo"></p> <script> var x = document.getElementById("demo"); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPosition); } else { x.innerHTML = "Geolocation is not supported by this browser."; } } function showPosition(position) { x.innerHTML = "Latitude: " + position.coords.latitude +...") |
mNo edit summary |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[ | === '''Inspiration:''' === | ||
* [https://www.mediawiki.org/wiki/Adding_JavaScript_to_Wiki_Pages Adding JavaScript to Wiki Pages] at mediawiki.org | |||
* [https://developer.mozilla.org/en-US/docs/Web/API/Geolocation_API Geolocation API] at developer.mozilla.org | |||
< | <html> | ||
<p>Click the button to get your coordinates.</p> | |||
<button onclick="getLocation()">Try It</button> | |||
<p id="ShowLatLonHere"></p> | |||
</html> | |||
</ | |||
Latest revision as of 15:51, 4 August 2022
Inspiration:
- Adding JavaScript to Wiki Pages at mediawiki.org
- Geolocation API at developer.mozilla.org
Click the button to get your coordinates.