0

我想生成一些 kml 字符串来存储到数据库中..

并有任何简单的方法来生成这个字符串?

谢谢

4

2 回答 2

0

kml 字符串是什么意思,它不是像下面这样的 xml 文件吗?

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
  <Placemark>
    <name>Stonehenge, England</name>
    <description>Stonehenge was built about 2500BC
    </description>
    <Point>
      <coordinates>-1.826752,51.179045
      </coordinates>
    </Point>
  </Placemark> 
</kml>

在这种情况下,您可以使用

XmlDocument xmlDoc = new XmlDocument();

ETC

于 2010-04-12T07:10:49.577 回答
0

也许试试这个数字化仪工具

http://www.birdtheme.org/useful/googletool.html

于 2010-09-07T08:46:51.607 回答