ຜົນງານ Geolocation position
- ຫນ້າຫນັງ getCurrentPosition()
- ຫນ້າຫນັງ coordinates
- ກັບຄືນຊັ້ນສູງສຸດ Geolocation ສະໂມສອນ
ການສະແດງການອະທິບາຍ
ຜົນງານ position ທີ່ບັນທຶກຕຳແຫນງຂອງອຸປະກອນໃນໂລກແລະຄວາມສູງຂອງອຸປະກອນດັ່ງກ່າວ。
ຄົນປະກອບ
ການຄົ້ນຫາທາງຕາມແລະນອກຂອງຜູ້ນຳໃຊ້:
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 = "ລະດັບອາກາດ: " + position.coords.latitude + "<br>ອາກາດຕາມແລະນອກ: " + position.coords.longitude; }
ຜົນງານ position
ລະບຽບ | ອະທິບາຍ |
---|---|
position.coords | ການບັນທຶກ Coordinates ທີ່ສະແດງຕຳແຫນງທີ່ຢູ່ປະຈຸບັນ。 |
position.timestamp | ການບັນທຶກໂອລວດ DOMTimeStamp ທີ່ສະແດງເວລາທີ່ຕັ້ງການຄົ້ນຫາທີ່ຕັ້ງຢູ່。 |
浏览器支持
ລະບຽບ | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
position | 5.0 | 9.0 | 3.5 | 5.0 | 16.0 |
- ຫນ້າຫນັງ getCurrentPosition()
- ຫນ້າຫນັງ coordinates
- ກັບຄືນຊັ້ນສູງສຸດ Geolocation ສະໂມສອນ