【发布时间】:2026-01-05 11:05:02
【问题描述】:
Google 距离矩阵最多可以接受 100 个参数。但是使用 GET Ruquest url lenth 将其限制为
public static bool GetMatrix(string origins, string destinations)
{
string poststring = string.Format("origins={0}&destinations={1}&mode=bicycling&language=fr-FR&sensor=false", origins, destinations);
byte[] postdata = Encoding.UTF8.GetBytes(poststring);
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create("http://maps.googleapis.com/maps/api/distancematrix/xml");
webRequest.Method = "POST";
webRequest.ContentType = "application/xml"; // or any other type dont work
webRequest.ContentLength = postdata.Length;
using (Stream writer = webRequest.GetRequestStream())
writer.Write(postdata, 0, postdata.Length);
using (HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse())
{
//Only for debug
using (var stream = new StreamReader(webResponse.GetResponseStream()))
System.Diagnostics.Debug.WriteLine(stream.ReadToEnd());
return (webResponse.StatusCode == HttpStatusCode.OK);
}
}
【问题讨论】:
-
改用 google maps jssdk。
标签: c# web-services google-maps google-maps-api-3