我是asp.net 的新手。我正在开发一个专门针对移动用户的网站。我想通过客户端获取经度和纬度,如果手机支持 GPS,那么它可以通过网站上的 GPS 进行定位。我怎样才能做到这一点。这是在 HTML5 上工作的吗?
请帮助发送一些带有描述的代码。
谢谢
您可以为此使用 HTML5 Geolocation,但它不使用手机 GPS
http://html5doctor.com/finding-your-position-with-geolocation/例如。
navigator.geolocation.getCurrentPosition(foundLocation, noLocation);
function foundLocation(position)
{
var lat = position.coords.latitude;
var long = position.coords.longitude;
alert('Found location: ' + lat + ', ' + long); //Do something
}
function noLocation()
{
alert('Could not find location');
}
使用 sim7100e 连接到 lattepanda 并内置 arduino sim71000e 将通过 sim7100e gps 向 arduino 发送位置数据,此位置数据将由 arduino 代码处理,然后 arduino 将数据发送到 lattepanda 上的 c# 并通过互联网将数据上传到您的网页