Hi Oracle,
While there is no KML element for speed, there are three ways - that I
can think of - to represent speed in KML.
1) You can note the speed in the description balloon:
<description>speed = 200mph</description>
An alternative to this is to use <Data> elements and embed them in the
<description> or <BalloonStyle><text> element, like this:
<Placemark>
<description>speed = $[speed]</description>
<ExtendedData>
<Data name="speed">
<value>200</value>
</Data>
...
for more information:
http://code.google.com/apis/kml/documentation/extendeddata.html
2) You can change size of a Placemark or the width of the LineString
based on how fast it is.
3) You can change the color of the Placemark or the LineString based
on the speed.
Mano
On May 26, 9:36 am, Oracle wrote:
> i wish to display the speed of the object in the kml file for eg.
> description , name etc ..well is there any way to do it ?
>
> On May 26, 5:18 pm, barryhunter [KML Guru] wrote:
>