var kmlDocument = new DOMParser().parseFromString(
'<?xml version="1.0" encoding="UTF-8"?>' +
'<Document>' +
'<name>Sundial Collection.kmz</name>' +
'<Style id="sn_sunny_copy68">' +
'<IconStyle>' +
'<scale>1.2</scale>' +
'<Icon>' +
'</Icon>' +
'<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>' +
'</IconStyle>' +
'<LabelStyle>' +
'<color>ff00aaff</color>' +
'</LabelStyle>' +
'</Style>' +
'<Folder>' +
'<name>Sundial Collection</name>' +
'<open>1</open>' +
'<LookAt>' +
'<longitude>-56.6884384968692</longitude>' +
'<latitude>47.91963617483238</latitude>' +
'<altitude>0</altitude>' +
'<range>9958750.824018393</range>' +
'<tilt>1.303827428939919e-015</tilt>' +
'<heading>-16.31426621668193</heading>' +
'</LookAt>' +
'<Style>' +
'<ListStyle>' +
'<listItemType>check</listItemType>' +
'<bgColor>00ffffff</bgColor>' +
'</ListStyle>' +
'</Style>' +
'<Folder>' +
'<name>High Resolution</name>' +
'<Placemark>' +
'<name>Sundial with light conductors - Paris, Les Halles</name>' +
'The sunlight falls on one of the three windows in the column (east, south, west) and over light' + 'conductors on the wall is indicated.' +
'The clock shows 16,40 o\'clock.' +
// This is the line of interest
'<LookAt>' +
'<longitude>2.344185113917775</longitude>' +
'<latitude>48.86294270160059</latitude>' +
'<altitude>0</altitude>' +
'<range>39.52787486507292</range>' +
'<tilt>0</tilt>' +
'<heading>-0.003533584730563007</heading>' +
'</LookAt>' +
'<styleUrl>#sn_sunny_copy68</styleUrl>' +
'<Point>' +
'<coordinates>2.344143312335305,48.86302323987447,0</coordinates>' +
'</Point>' +
'</Placemark>' +
'</Folder>' +
'</Folder>' +
'</Document>' +
'</kml>', "application/xml");
//Load the KML object and move camera to point to it.
viewer.flyTo(
viewer.dataSources.add(
Cesium.KmlDataSource.load(kmlDocument, options)
)
);