- 积分
- 3638
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-10-21
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
设置Style,既可在地标内设置,也可在外写好再给个ID,这与写函数类似;以下是效果一样的两种写法:
1、在地标内设置:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
<Document>
<name>ao</name>
<Placemark>
<name>test1</name>
<Style>
<IconStyle>
<scale>5</scale>
<color>ff0000ff</color>
<Icon>
<href></href>
</Icon>
</IconStyle>
<LabelStyle>
<color>ff0000ff</color>
<scale>3</scale>
</LabelStyle>
</Style>
<Point>
<coordinates>120.8,32.5,0</coordinates>
</Point>
</Placemark>
</Document>
</kml>
2、引用样式:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
<Document>
<name>ao</name>
<Style id="style000">
<IconStyle>
<scale>5</scale>
<color>ff0000ff</color>
<Icon>
<href> </href>
</Icon>
</IconStyle>
<LabelStyle>
<color>ff0000ff</color>
<scale>3</scale>
</LabelStyle>
</Style>
<Placemark>
<name>test1</name>
<styleUrl>#style000</styleUrl>
<Point>
<coordinates>120.8,32.5,0</coordinates>
</Point>
</Placemark>
</Document>
</kml>
|
|