有没有人知道如何调整KML文件夹中描述的高度。
我有一个结构,我(在视觉上)看起来像这样:
|[] kml_name |
| [] test/folder_name |
| created: 2014-09-08 01:01:01.111111 |
| description: foo...bar |
| [] Placemark_1 |
| [] Placemark_2 |
| ... |
例如,KML看起来像这样:
<?xml version="1.0" encoding="utf-8" ?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
<name>kml_name.kml</name>
<Folder>
<name>test_name</name>
<description>created 2014-09-08 01:01:01.111111<br/>desc: foo...bar</description>
<Placemark>
<Style>
<IconStyle>
<Icon><href>http://maps.google.com/mapfiles/kml/shapes/arrow.png</href></Icon>
<heading>111.1111</heading>
<color>ff008523</color>
<scale>.6</scale>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<name>Placemark_1</name>
<scale>0</scale>
<color>ff008523</color>
<description><b>duration:</b> 0.0408148765564<br/><b>time:</b> 2014-09-08 01:01:01.111112<br/><b>CNR:</b> 31.9<br/><b>BER:</b> 344</description>
<Point><coordinates>-65.136866233,27.395845826,20.316</coordinates></Point>
</Placemark>
<Placemark>
<Style>
<LineStyle>
<color>ffff0000</color>
<width>2</width>
</LineStyle>
</Style>
<name></name>
<LineString>
<coordinates>-65.136866233,27.395845826,20.316,-65.136877726,27.395847788,20.077</coordinates>
</LineString>
</Placemark>
...
</Folder></Document>
</kml>
有没有办法简单地展开<description>
div(在<Folder>
下)以容纳desc:
(因为这完全被切断了)?