C#.Net获取经纬度方法
本实例是通过C# 获取你的设备所在的经纬度!精确到小数点后六位;
写程序前,请先添加引用:
System.Device
在添加命名空间
using System.Device.Location;
命名空间,不然找不到该命名空间,
你的对应.NET版本需要为.NET4.5以上,
程序代码如下:
GeoCoordinateWatcher watcher = new GeoCoordinateWatcher(); watcher.TryStart(false, TimeSpan.FromMilliseconds(5000));////超过5S则返回False; GeoCoordinate coord = watcher.Position.Location; if (coord.IsUnknown != true) { this.Text = "东经:" coord.Longitude.ToString() "\t北纬" coord.Latitude.ToString() "\n"; } else { this.Text = "地理未知"; }coord.Longitude获取的是经度,大于0为东经,小于0为西经;
coord.Latitude 获取的是维度,大于0为北纬,小于0为南纬;
获取的值为Double类型;
原文链接:C#.Net获取经纬度方法