0
我想要在我的網站申請這個例子 here example力地理位置在PHP我的網站
我嘗試使用最近的地方,用戶誰登錄到我的網站
我需要得到經度緯度的值時,頁面加載..如果你想允許或拒絕
,我怎麼能使用此代碼的PHP
<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>