HI Leidil,
No problem, glad to help....
I couldn't see and example myself but you can certainly set the
placemarks point "altitudeMode" and "altitude" using either kml or
the plug-in.
Check the entry for <point> in the KML API:
http://code.google.com/apis/kml/documentation/kmlreference.html#point
And the entry for KmlPoint in the plug-in API
http://code.google.com/apis/earth/documentation/reference/interface_kml_point.html
For example....
using the plug-in:
--------------------------------------------------
// Create placemark
var placemark = ge.createPlacemark('');
placemark.setName("Absoulte Altitude Example");
ge.getFeatures().appendChild(placemark);
// Create point
var point = ge.createPoint('');
point.set(your_latitude, your_longitude, 200, ALTITUDE_ABSOLUTE,
false, false)
placemark.setGeometry(point);
--------------------------------------------------
using KML...
--------------------------------------------------
<Placemark>
<name>My Placemark</name>
<description>Set at 200ft above the earth</description>
<Point>
<coordinates>your_latitude,your_longitude,200</coordinates>
<altitudeMode>absolute</altitudeMode
</Point>
</Placemark>
--------------------------------------------------
Hope that helps.
Regards,
Fraser.