Sorry.
I've created a zip-File with an example. You can download it here:
http://rapidshare.com/files/10756821/sphere.zip.html (scroll down an cklick on "free"; then enter the security Code at "hier eingeben")
It's a zip file. Please, don't use it as a kmz file. Unpack it. There are three kml-files in it.
doc_original.kml (puts a sphere directly on the ground)
Code:
<?xml version='1.0' encoding='UTF-8'?>
<kml xmlns='http://earth.google.com/kml/2.1'>
<Placemark> <name>sphere_tutorial_1_</name>
<description><!CDATA[Created with <a href="http://sketchup.google.com">Google SketchUp</a>]]></description>
<DocumentSource>SketchUp</DocumentSource>
<Style id='default'>
</Style>
<Model>
<altitudeMode>relativeToGround</altitudeMode>
<Location>
<longitude>-105.283000000000</longitude>
<latitude>40.017000000000</latitude>
<altitude>0.000000000000</altitude>
</Location>
<Orientation>
<heading>0</heading>
<tilt>0</tilt>
<roll>0</roll>
</Orientation>
<Scale>
<x>1.0</x>
<y>1.0</y>
<z>1.0</z>
</Scale>
<Link>
<href>models/sphere_tutorial_1_.dae</href>
</Link>
</Model>
</Placemark>
</kml>
doc_hover.kml (puts a sphere about 10 meters over the ground; works fine)
Code:
<?xml version='1.0' encoding='UTF-8'?>
<kml xmlns='http://earth.google.com/kml/2.1'>
<Placemark> <name>sphere_tutorial_1_</name>
<description><!CDATA[Created with <a href="http://sketchup.google.com">Google SketchUp</a>]]></description>
<DocumentSource>SketchUp</DocumentSource>
<Style id='default'>
</Style>
<Model>
<altitudeMode>relativeToGround</altitudeMode>
<Location>
<longitude>-105.283000000000</longitude>
<latitude>40.017000000000</latitude>
<altitude>10.000000000000</altitude>
</Location>
<Orientation>
<heading>0</heading>
<tilt>0</tilt>
<roll>0</roll>
</Orientation>
<Scale>
<x>1.0</x>
<y>1.0</y>
<z>1.0</z>
</Scale>
<Link>
<href>models/sphere_tutorial_1_.dae</href>
</Link>
</Model>
</Placemark>
</kml>
doc_hover_and_scale (puts a sphere 10 meters over ground an scales it up, so it ist twice as big as normal; doesn't work proper; moves the sphere about 30 Meters to north and if you zoom in, the sphere seems to disappear)
Code:
<?xml version='1.0' encoding='UTF-8'?>
<kml xmlns='http://earth.google.com/kml/2.1'>
<Placemark> <name>sphere_tutorial_1_</name>
<description><!CDATA[Created with <a href="http://sketchup.google.com">Google SketchUp</a>]]></description>
<DocumentSource>SketchUp</DocumentSource>
<Style id='default'>
</Style>
<Model>
<altitudeMode>relativeToGround</altitudeMode>
<Location>
<longitude>-105.283000000000</longitude>
<latitude>40.017000000000</latitude>
<altitude>10.000000000000</altitude>
</Location>
<Orientation>
<heading>0</heading>
<tilt>0</tilt>
<roll>0</roll>
</Orientation>
<Scale>
<x>2.0</x>
<y>2.0</y>
<z>2.0</z>
</Scale>
<Link>
<href>models/sphere_tutorial_1_.dae</href>
</Link>
</Model>
</Placemark>
</kml>
Anyone an idea? What am i doing wrong?