I'm displaying multiple images using CZML:
"polygon": {
"height": polygonHeight,
"positions":
{
"cartographicDegrees": pos
},
"material": {
"image": {
"image": { "uri": imageUri},
"color": {
"rgba": [255, 255, 255, 255]
}
}
}
}
Whenever image is added to the list or removed, the whole CZML object is recreated.
The images are static images.
For performance reasons I would expect Cesium to use browser cache and not download images each time.
Unfortunately this not the case - the request for the images has the following headers set:
Cache-Control:no-cache
Pragma:no-cache
Is it possible to make Cesium to use the cache?
Thank you