forked from mirrors/gecko-dev
		
	 a3846471d6
			
		
	
	
		a3846471d6
		
	
	
	
	
		
			
			Differential Revision: https://phabricator.services.mozilla.com/D14018 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			776 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			776 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en" dir="ltr">
 | |
| <head>
 | |
|   <script type="text/javascript">
 | |
|     var result = null;
 | |
| 
 | |
|     function handlePosition(position) {
 | |
|       // eslint-disable-next-line no-unsanitized/property
 | |
|       result.innerHTML = position.coords.latitude + " " + position.coords.longitude;
 | |
|     }
 | |
| 
 | |
|     function handleError(error) {
 | |
|       // eslint-disable-next-line no-unsanitized/property
 | |
|       result.innerHTML = error.message;
 | |
|     }
 | |
| 
 | |
|     function init() {
 | |
|       result = document.getElementById("result");
 | |
| 
 | |
|       if (navigator.geolocation)
 | |
|         navigator.geolocation.getCurrentPosition(handlePosition, handleError);
 | |
|       else
 | |
|         result.innerHTML = "not available";
 | |
|     }
 | |
| 
 | |
|   </script>
 | |
| </head>
 | |
| <body onload="init()">
 | |
|   <p id="result">location...</p>
 | |
| </body>
 | |
| </html>
 |