"ball.png"を上のkmlファイルと同じフォルダに置いておく。"http://www...../ball.png"などのように
高度を指定すると、経度は-180度から180度までで、180度を超えることが出来ない。
"LineString"の例と同様に、色の最初の2桁で16進数(00-ff)の透明度を指定する。
"YYYY-MM-DDTHH:MM:SSZ"でUTでの時刻を設定できる。
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.0"> <Document>
<GroundOverlay>
<Icon><href> ball.png </href></Icon>
<LatLonBox>
<south>-20.</south><north>50.</north>
<west>100.</west><east>170.</east>
<rotation>0.</rotation>
</LatLonBox>
</GroundOverlay>
</Document> </kml>
画像はネットワーク上のものを指定することも可能。
画像もファイルに含めるにはzipでkmlファイルと画像ファイルをまとめて一つのファイルにし、拡張子を"kmz"にする。
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.0"> <Document>
<GroundOverlay>
<Icon><href> ball.png </href></Icon>
<altitude>100000.</altitude> <altitudeMode>absolute</altitudeMode>
<LatLonBox>
<south>-20.</south><north>50.</north>
<west>100.</west><east>170.</east>
<rotation>0.</rotation>
</LatLonBox>
</GroundOverlay>
</Document> </kml>
"ball.png"を上のkmlファイルと同じフォルダに置いておく。
高度を5000km = 5000000m に変更して試してみる。
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.0"> <Document>
<GroundOverlay>
<Icon><href> ball.png</href></Icon>
<color>55ffffff</color>
<altitude>10000.</altitude> <altitudeMode>absolute</altitudeMode>
<LatLonBox>
<south>-20.</south><north>50.</north>
<west>100.</west><east>170.</east>
<rotation>0.</rotation>
</LatLonBox>
</GroundOverlay>
</Document> </kml>
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.0"> <Document>
<GroundOverlay>
<Icon><href> ball.png </href></Icon>
<color>55ffffff</color>
<altitude>10000.</altitude> <altitudeMode>absolute</altitudeMode>
<LatLonBox>
<south>-20.</south><north>50.</north>
<west>100.</west><east>170.</east>
<rotation>0.</rotation>
</LatLonBox>
<TimeSpan>
<begin>2010-12-20T03:00:00Z</begin>
<end>2010-12-21T02:59:59Z</end>
</TimeSpan>
<name> New image</name>
<description>This is a new image to learn KML format.</description>
<Style>
<BalloonStyle>
<bgColor>00664422</bgColor> <textColor>fffffff</textColor>
<text><![CDATA[ $[name] <HR> $[description] <BR>
<A HREF="http://step0ku.kugi.kyoto-u.ac.jp/">SPEL Home page</A>
]]> </text>
</BalloonStyle>
</Style>
</GroundOverlay>
</Document> </kml>
" <begin>"で表示開始時間、 "<end>”で表示終了時間を指定する。