- 积分
- 3638
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-10-21
- 最后登录
- 1970-1-1
|
楼主 |
发表于 2019-1-17 14:47:41
|
显示全部楼层
一个固定Logo案例
固定开头:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
<Document>
新建屏幕贴图:
<ScreenOverlay>
设置颜色,一定要是白色,透明度自定:
<color>7fffffff</color>
引用本地图片:
<Icon><href>
C:\Users\Administrator\Desktop\xbx.png
</href></Icon>
设置位置,把图的中心与屏幕的中心对应:
<overlayXY x="0.5" xunits="fraction" y="0.5" yunits="fraction" />
<screenXY x="0.5" xunits="fraction" y="0.5" yunits="fraction"/>
<rotationXY x="0" xunits="fraction" y="0" yunits="fraction"/>
<size x="0" xunits="fraction" y="0" yunits="fraction"/>
</ScreenOverlay>
</Document>
</kml>
|
|