我的应用程序在 spring-hibernate 中。我也在使用 spring mobile 进行移动特定设计,我们想在 web 应用程序上跟踪用户的位置,以便它显示特定的数据。如何在 spring 应用程序中获取移动设备的位置。谢谢
代码来自 w3school:
<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>