>From my tests, it doesn't appear that i can change the LookAt node in the document. For an initial LookAt, i have the below:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="
http://earth.google.com/kml/2.1">
<Document>
<LookAt id="la123">
<longitude>-105.44</longitude>
<latitude>40.42</latitude>
<range>100</range>
</LookAt>
...rest of document...
In the update node, i have the below:
<Change>
<LookAt targetId="la123">
<longitude>140.42</longitude>
<latitude>-95.43</latitude>
<range>200</range>
</LookAt>
</Change>
Upon loading the update document my location isnt changed. I have flyToView set to "1" in both documents:
<flyToView>1</flyToView>
The other issue that I'm going to run into is that I won't be sure that someone has downloaded the document. e.g. they MIGHT have the KML file already open (in which case an update would work great), or they might open the file (in which case we would set the cookie) then they close Google Earth. the cookie would still be set, but GoogleEarth would be closed (in which case I would not know to send them the full document).