参考了网上部分资料,自己改写了一个方便的获取经纬度信息的类Geo,其中Latitude和Longtitude分别是纬度和经度。其中最重要的构造函数就是传入地名,通过Webrequest从Google Map获得经纬度值,在含有地理位置信息的项目里可以很方便的调用,即Geo g = new Geo("北京师范大学");然后g.Latitude和g.Longtitude就是北京师范大学的纬度和经度了,它们分别是39.9614580,116.3692820。Geo的实现如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.IO;
namespace YourNameSpace
{
///
/// a class for latitude and longtitude
///
[Serializable]
public class Geo
{
///
/// latitude
///
private string _latitude = "";
///
/// longtitude
///
private string _longtitude = "";
///
/// default constructor
///
public Geo()
{
}
///
/// construct geo given latitude and longtitude
///
///
///
public Geo(string latitude, string longtitude)
{
_latitude = latitude;
_longtitude = longtitude;
}
///
/// construct geo given name of a place
///
///
public Geo(string location)
{
string output = "csv";
string url = string.Format("http://maps.google.com/maps/geo?q={0}&output={1}", location, output);
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
using (StreamReader sr = new StreamReader(response.GetResponseStream()))
{
string[] tmpArray = sr.ReadToEnd().Split(',');
_latitude = tmpArray[2];
_longtitude = tmpArray[3];
}
}
///
/// get latitude(纬度)
///
public string Latitude
{
get { return _latitude; }
set { _latitude = value; }
}
///
/// get longtitude(经度)
///
public string Longtitude
{
get { return _longtitude; }
set { _longtitude = value; }
}
}

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。

MinGW - Minimalist GNU for Windows
這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。

VSCode Windows 64位元 下載
微軟推出的免費、功能強大的一款IDE編輯器

禪工作室 13.0.1
強大的PHP整合開發環境

SublimeText3 英文版
推薦:為Win版本,支援程式碼提示!