データベースに保存する kml 文字列を生成したい..
この文字列を生成する簡単な方法はありますか?
ありがとう
データベースに保存する kml 文字列を生成したい..
この文字列を生成する簡単な方法はありますか?
ありがとう
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();
等
たぶん、このデジタイザーツールを試してみてください