获取移动用户asp.net的位置

问题描述 投票:1回答:2

我是asp.net的新手。我正在开发一个专门针对移动用户的网站。我想通过客户端获取经度和纬度,如果移动设备支持GPS,那么它将通过GPS在网站上启用位置。我怎样才能做到这一点。在HTML5上可以使用吗?

请帮助发送一些带有说明的代码。

谢谢

c# asp.net html5
2个回答
1
投票

您可以为此使用HTML5地理位置,虽然它没有使用手机的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');
 }

0
投票

使用在arduino中构建的附加到lattepanda的sim7100e,sim71000e将通过sim7100e gps将位置数据发送到arduino,该位置数据将由arduino代码处理,然后arduino将数据发送到lattepanda上的c#,并通过将数据上传到您的网页互联网

© www.soinside.com 2019 - 2024. All rights reserved.