Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <apex:page>
  2. <!-- Begin Default Content REMOVE THIS -->
  3. <h1>Welcome </h1> Your Location is
  4.  
  5. <div id="startLat">
  6. </div>
  7.  
  8. <div id="startLon">
  9. </div>
  10.  
  11. <script>
  12. window.onload = function() {
  13. var startPos;
  14. var geoSuccess = function(position) {
  15. startPos = position;
  16. document.getElementById('startLat').innerHTML = startPos.coords.latitude;
  17. document.getElementById('startLon').innerHTML = startPos.coords.longitude;
  18. };
  19. navigator.geolocation.getCurrentPosition(geoSuccess);
  20. };
  21. </script>
  22. </apex:page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement