我正在尝试在 Asp.net C# 中编写一段代码,以便即时创建 KML 文件并将其存储在特定路径中。当我想添加 kml 标签的 xmlns="http://earth.google.com/kml/2.2" 属性时,代码会出错(见下文)。我尝试用“id”之类的另一个词替换 xmlns,它工作得很好。它与“xmlns”这个词有关吗??!对我来说很奇怪。
如果您了解问题所在,请为我提供解决方案...谢谢!
我的代码:
XDocument doc = new XDocument(
new XDeclaration("1.0", "utf-8", ""),
new XComment("This is comment by me"),
new XElement("kml", new XAttribute("xmlns", "http://earth.google.com/kml/2.2"),
new XElement("Document",
new XElement("Name", "something"), new XElement("Placemark",
new XAttribute("id", "1"),
new XElement("title", "something"),
new XElement("description", "something"),
new XElement("LookAt",
new XElement("Longitude", "49.69"),
new XElement("Latitude", "32.345")), new XElement("Point", new XElement("Coordinates", "49.69,32.345,0"))))));
doc.Save(Server.MapPath(@"~\App_Data\markers.xml"));
它给出的运行时错误:
前缀 '' 不能在同一起始元素标记中从 '' 重新定义为 ' http://earth.google.com/kml/2.2 '。说明:执行当前 Web 请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。
异常详细信息:System.Xml.XmlException:前缀 '' 不能在同一起始元素标记中从 '' 重新定义为 ' http://earth.google.com/kml/2.2 '。
我想创建的 kml 文件:
<?xml version="1.0" encoding="utf-8"?>
<!--This is comment by me-->
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
<Name>something</Name>
<Placemark id="1">
<title>something</title>
<description>something</description>
<LookAt>
<Longitude>49.69</Longitude>
<Latitude>32.345</Latitude>
</LookAt>
<Point>
<Coordinates>49.69,32.345,0</Coordinates>
</Point>
</Placemark>
</Document>
</kml>