- 积分
- 3638
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-10-21
- 最后登录
- 1970-1-1
|
楼主 |
发表于 2019-1-14 09:53:07
|
显示全部楼层
本帖最后由 15195775117 于 2019-1-14 10:07 编辑
固定开头:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
<Document>
文件名:
<name>ao</name>
新建地标:
<Placemark>
<name>tracks</name>
<description>Linestyle</description>
新建样式:
<Style id="Style">
(不知为何有3个?)
<LineStyle id="StyleLine">
<color>ff00ffff</color>
<width>8</width>
</LineStyle>
<PolyStyle id="StylePoly">
<color>7f00ff00</color>
</PolyStyle>
</Style>
新建连线:
<LineString id="StyleLine">
<extrude>1</extrude>
<tessellate>1</tessellate>
<altitudeMode>absolute</altitudeMode>
<coordinates>
119.71,32.65,1000
119.71,32.66,2000
119.66,32.68,3000
119.63,32.63,4000
119.66,32.58,5000
119.70,32.62,6000
119.72,32.65,7000
</coordinates>
</LineString>
</Placemark>
</Document>
</kml>
|
|