พอดีจะทำโปรเจคจบเกี่ยวกับ Google MAPS API จะทำให้ text box ใช้searchสถานที่ได้(ทำได้แล้ว)
และจะให้text box อันเดียวกันนั้นสามารถ get locationปัจจุบันของผู้ใช่ ได้ครับ
ทีนี้ ตอนนี้ทำได้ครับ แต่ทำได้แค่บนเบราเซอร์บนPCครับ พอไปtestกับ iOS หรือ Android แล้วไม่ขึ้น
อันนี้ตัวอย่าง code ที่ไม่ใส่ place searchนะครับ Code
<!DOCTYPE html>
<html>
<body>
<button onclick="getLocation()">Try It</button>
<p id="demo"></p>
<script>
var x = document.getElementById("demo");
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(success);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function success(position) {
var loc = position.coords.latitude + ',' + position.coords.longitude;
document.getElementById("slocation").value = loc ;
};
</script>
<input type = "text" id = "slocation"/>
</body>
</html>