I am having a problem with the Google Earth Timeslider. I have created a KML file through excel which includes several different Placemarks. Each line of the code has a TimeStamp for each placemark. However when i open this in Google Earth and use the Timeslider, all the placemarks come up for every timestamp in the file.
For Example if i had 5 Placemarks in the KML file and the Timestamps where an hour apart, then every placemark would appear on each hour rather than only the one with the corresponding timestamp. Does that make sense?
Here is an example of a couple lines of the KML File
<?xml version="1.0" encoding="UTF-8"?><kml xmlns="http://earth.google.com/kml/2.0">
<Document>
<Placemark>
<Style>
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/shapes/placemark_circle.png</href>
</Icon>
<colorMode>normal</colorMode>
<color>50009614</color>
<TimeStamp>
<when>2017-05-01T09:00:00Z</when>
</TimeStamp>
<name>Location1</name>
<Point>
<coordinates>"Longitude", "Latitude",0</coordinates>
</Point>
<description><![CDATA["Description"]]></description>
</Placemark>
<Placemark>
<Style>
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/shapes/placemark_circle.png</href>
</Icon>
<colorMode>normal</colorMode>
<color>50009614</color>
<TimeStamp>
<when>2017-05-01T10:00:00Z</when>
</TimeStamp>
<name>Location2</name>
<Point>
<coordinates>"Longitude", "Latitude",0</coordinates>
</Point>
<description><![CDATA["Description"]]></description>
</Placemark>
</Document></kml>
So in this example both Location 1 and 2 would appear on google earth but they would both show up at 0900 and 1000. instead of only Location 1 appearing at 0900 and only 2 at 1000.
Any help would be appreciated
Regards
John