Google Earth TimeStamp animation sequence issue -
Google Earth TimeStamp animation sequence issue -
i have been trying create illustration of animation in google earth (ge) plotting points on map @ different times. can't seem work. using google's kml , have looked @ documentation.
the next illustration of plotting 3 points @ different timestamps. using "timestamp" tag "begin" , "end" tags inside. how show working on google documentation page, not seem work becuase time line on ge not show when open file (the timeline supposed show in ge when there "timestamp" tags in kml file). however, when alter "begin" , "end" tags "when" tag, seems sort of work not in way wanted to. know if using "begin" , "end" tags wrong? doc google gives http://code.google.com/apis/kml/documentation/kmlreference.html#timespan
here illustration talking about. can open in ge saving kml file. see 3 dots show no animation. wanted happen have 1 dot show up, disappear, have next dot show , disappear ...
thanks help in advanced ;)
<?xml version="1.0" encoding="utf-8"?> <kml xmlns="http://www.opengis.net/kml/2.2"> <document> <style id="dotstyle"> <iconstyle> <scale>0.3</scale> <icon> <href>http://www.rootsweb.ancestry.com/~tnmeigs/images/dark-red-circle.png</href> </icon> </iconstyle> </style> <placemark> <timestamp> <begin>2010-01-01</begin> <end>2010-01-02</end> </timestamp> <styleurl>#dotstyle</styleurl> <point> <coordinates>110.43852082858155,-7.582042422936696</coordinates> </point> </placemark> <placemark> <timestamp> <begin>2010-01-02</begin> <end>2010-01-03</end> </timestamp> <styleurl>#dotstyle</styleurl> <point> <coordinates>110.43852082858155,-7.592042422936696</coordinates> </point> </placemark> <placemark> <timestamp> <begin>2010-01-03</begin> <end>2010-01-04</end> </timestamp> <styleurl>#dotstyle</styleurl> <point> <coordinates>110.43852082858155,-7.602042422936696</coordinates> </point> </placemark> </document> </kml>
you should utilize <timespan>
rather <timestamp>
, work. <timestamp>
expects <when>
rather <begin>
, <end>
animation timestamp kml google-earth
Comments
Post a Comment