Can someone please sanity check me.
The example in the google developers for animated updates is https://developers.google.com/static/kml/documentation/kmlfiles/animatedupdate_example.kml
and it works fine.
However the same code embedded in a kml generated by the FME KML writer does not work.
As far as I can tell, the issue is with the name space declaration.
the example uses
<kml xmlns="http://www.opengis.net/kml/2.2"
xmlns:gx="http://www.google.com/kml/ext/2.2">
whereas the FME kml writer produces
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
Am I going crazy or does changing the declaration break the animation for anyone else?