我试图获取地址的纬度/经度,并且我在dev.virtualearth.net上使用XML提供程序。
XML就像这样:
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://schemas.microsoft.com/search/local/ws/rest/v1">
<StatusCode>200</StatusCode>
<StatusDescription>OK</StatusDescription>
<AuthenticationResultCode>ValidCredentials</AuthenticationResultCode>
<ResourceSets>
<ResourceSet>
<EstimatedTotal>2</EstimatedTotal>
<Resources>
<Location>
<Name>350 Avenue V, New York, NY 11223</Name>
<Point>
<Latitude>40.595024898648262</Latitude>
<Longitude>-73.969506248831749</Longitude>
</Point>
我创建了一个XDocument
,我试图获取Point
下的纬度和经度值
XDocument doc = GetDoc();
XNamespace xmlns = "http://schemas.microsoft.com/search/local/ws/rest/v1";
var latlong = from c in docDescendants(xmlns + "Point")
select new
{
latitude = c.Element("Latitude"),
longitude = c.Element("Longitude")
};
但我只是为纬度和经度值得零。
我这样做错了吗?
答案 0 :(得分:3)
您也应该将命名空间与嵌套元素一起使用。
string xmlString =
@"
<Response xmlns:xsd=""http://www.w3.org/2001/XMLSchema""
xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance""
xmlns=""http://schemas.microsoft.com/search/local/ws/rest/v1"">
<StatusCode>200</StatusCode>
<StatusDescription>OK</StatusDescription>
<AuthenticationResultCode>ValidCredentials</AuthenticationResultCode>
<ResourceSets>
<ResourceSet>
<EstimatedTotal>2</EstimatedTotal>
<Resources>
<Location>
<Name>350 Avenue V, New York, NY 11223</Name>
<Point>
<Latitude>40.595024898648262</Latitude>
<Longitude>-73.969506248831749</Longitude>
</Point>
</Location>
</Resources>
</ResourceSet>
</ResourceSets>
</Response>
";
var doc = XDocument.Parse(xmlString);
XNamespace ns = "http://schemas.microsoft.com/search/local/ws/rest/v1";
var positions = doc.Descendants(ns + "Point")
.Select(p =>
new {
Latitude = (double)p.Element(ns + "Latitude"),
Longitude = (double)p.Element(ns + "Longitude")
});