ผมทำแค่นี้ บน web server ของ ubuntu server ยังไม่ขึ้นอะไรเลยเกี่ยวกับ latitude, longtitude น่ะครับ
ผมใส่ code แค่นี้เอง
<html>
<body>
<p id="demo">หาตำแหน่งของฉัน</p>
<button onclick="getLocation()">คลิก</button>
<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 + "<br>Longitude: " + position.coords.longitude; }
</script>
</body>
</html>