I have a kmz with a colada .dae tree model included which I want to convert into 3d tiles in ion. This works however the tree model is too small and I am trying to increaes its scale. Changing the scale in the kmz file only increases the size of the bounding box however the size of the object is not increasing.
How can I increase the scale, either in the kmz or when/after loading the 3d tileset into the viewer?
This is the kmz file:
'''
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
<Placemark>
<Model id="model_1">
<altitudeMode>relativeToGround</altitudeMode>
<Location>
<longitude>5.4598388028252</longitude>
<latitude>52.5303935408946</latitude>
<altitude>0</altitude>
</Location>
<Orientation>
<heading>0</heading>
<tilt>0</tilt>
<roll>0</roll>
</Orientation>
<Scale>
<x>10</x>
<y>10</y>
<z>10</z>
</Scale>
<Link>
<href>files/model.dae</href>
</Link>
</Model>
</Placemark>
</kml>
'''
I am using chrome, cesium 1.51 and Windows.